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 ChatEvent();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ChatEvent(::ChatEvent const&);
36
37 MCAPI ChatEvent(::WeakRef<::EntityContext> sender, ::TextPacket const& packet);
38
39 MCAPI ~ChatEvent();
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::ChatEvent const&);
46
47 MCAPI void* $ctor(::WeakRef<::EntityContext> sender, ::TextPacket const& packet);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55};
Definition EntityContext.h:17
Definition TextPacket.h:19
Definition WeakRef.h:8