LeviLamina
Loading...
Searching...
No Matches
ChatEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/game_refs/WeakRef.h"
7
8// auto generated forward declare list
9// clang-format off
10class EntityContext;
11class TextPacket;
12// clang-format on
13
14struct ChatEvent {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 32, ::std::string> mMessage;
19 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mFilteredMessage;
20 ::ll::TypedStorage<8, 24, ::WeakRef<::EntityContext>> mSender;
21 ::ll::TypedStorage<8, 32, ::std::optional<::std::vector<::WeakRef<::EntityContext>>>> mTargets;
22 ::ll::TypedStorage<8, 32, ::std::string> mAuthor;
23 ::ll::TypedStorage<1, 1, bool> mMessageValid;
24 ::ll::TypedStorage<1, 1, bool> mAllowFiltering;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ChatEvent& operator=(ChatEvent const&);
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI ChatEvent(::ChatEvent const&);
35
36 MCAPI ChatEvent(::ChatEvent&&);
37
38 MCAPI ChatEvent(::WeakRef<::EntityContext> sender, ::TextPacket const& packet);
39
40 MCAPI ~ChatEvent();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::ChatEvent const&);
47
48 MCAPI void* $ctor(::ChatEvent&&);
49
50 MCAPI void* $ctor(::WeakRef<::EntityContext> sender, ::TextPacket const& packet);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCAPI void $dtor();
57 // NOLINTEND
58};
Definition EntityContext.h:16
Definition TextPacket.h:18
Definition WeakRef.h:8
Definition ChatEvent.h:14