LeviLamina
Loading...
Searching...
No Matches
ScriptCommandMessageEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorUniqueID.h"
7#include "mc/world/events/BlockObject.h"
8
9// auto generated forward declare list
10// clang-format off
11class Level;
12// clang-format on
13
14struct ScriptCommandMessageEvent {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 32, ::std::string> mMessageId;
19 ::ll::TypedStorage<8, 32, ::std::string> mMessageValue;
20 ::ll::TypedStorage<8, 8, ::Level const&> mLevel;
21 ::ll::TypedStorage<8, 16, ::std::optional<::ActorUniqueID>> mSourceActor;
22 ::ll::TypedStorage<8, 32, ::std::optional<::BlockObject>> mBlockObject;
23 ::ll::TypedStorage<8, 16, ::std::optional<::ActorUniqueID>> mInitiator;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ScriptCommandMessageEvent& operator=(ScriptCommandMessageEvent const&);
29 ScriptCommandMessageEvent();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI ScriptCommandMessageEvent(::ScriptCommandMessageEvent const&);
35
36 MCAPI ScriptCommandMessageEvent(
37 ::std::string const& messageId,
38 ::std::string const& messageValue,
39 ::Level const& level,
40 ::std::optional<::ActorUniqueID> sourceActor,
41 ::std::optional<::BlockObject> blockObject,
42 ::std::optional<::ActorUniqueID> initiatorId
43 );
44
45 MCAPI ~ScriptCommandMessageEvent();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(::ScriptCommandMessageEvent const&);
52
53 MCAPI void* $ctor(
54 ::std::string const& messageId,
55 ::std::string const& messageValue,
56 ::Level const& level,
57 ::std::optional<::ActorUniqueID> sourceActor,
58 ::std::optional<::BlockObject> blockObject,
59 ::std::optional<::ActorUniqueID> initiatorId
60 );
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCFOLD void $dtor();
67 // NOLINTEND
68};
Definition Level.h:255