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 MCNAPI ChatEvent(::ChatEvent const&);
36
38
39 MCNAPI ChatEvent(::WeakRef<::EntityContext> sender, ::TextPacket const& packet);
40
41 MCNAPI ~ChatEvent();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI void* $ctor(::ChatEvent const&);
48
49 MCNAPI void* $ctor(::ChatEvent&&);
50
51 MCNAPI void* $ctor(::WeakRef<::EntityContext> sender, ::TextPacket const& packet);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCNAPI void $dtor();
58 // NOLINTEND
59};
Definition EntityContext.h:16
Definition TextPacket.h:18
Definition WeakRef.h:8
Definition ChatEvent.h:14
MCAPI ChatEvent(::ChatEvent &&)
MCAPI void * $ctor(::WeakRef<::EntityContext > sender, ::TextPacket const &packet)
MCAPI void * $ctor(::ChatEvent &&)
MCAPI void * $ctor(::ChatEvent const &)
MCAPI ChatEvent(::WeakRef<::EntityContext > sender, ::TextPacket const &packet)
MCAPI void $dtor()
MCAPI ~ChatEvent()
MCAPI ChatEvent(::ChatEvent const &)