LeviLamina
Loading...
Searching...
No Matches
NpcRequestPacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorRuntimeID.h"
7
8struct NpcRequestPacketPayload {
9public:
10 // NpcRequestPacketPayload inner types define
11 enum class RequestType : uchar {
12 SetActions = 0,
13 ExecuteAction = 1,
14 ExecuteClosingCommands = 2,
15 SetName = 3,
16 SetSkin = 4,
17 SetInteractText = 5,
18 ExecuteOpeningCommands = 6,
19 };
20
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 8, ::ActorRuntimeID> mId;
25 ::ll::TypedStorage<1, 1, ::NpcRequestPacketPayload::RequestType> mType;
26 ::ll::TypedStorage<8, 32, ::std::string> mActions;
27 ::ll::TypedStorage<1, 1, uchar> mActionIndex;
28 ::ll::TypedStorage<8, 32, ::std::string> mSceneName;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 NpcRequestPacketPayload(NpcRequestPacketPayload const&);
34 NpcRequestPacketPayload();
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI NpcRequestPacketPayload(
41 ::NpcRequestPacketPayload::RequestType type,
42 ::std::string actions,
43 uchar actionIndex
44 );
45
46 MCAPI ::NpcRequestPacketPayload& operator=(::NpcRequestPacketPayload&&);
47
48 MCAPI ::NpcRequestPacketPayload& operator=(::NpcRequestPacketPayload const&);
49
50 MCAPI ~NpcRequestPacketPayload();
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void*
57 $ctor(::ActorRuntimeID id, ::NpcRequestPacketPayload::RequestType type, ::std::string actions, uchar actionIndex);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCFOLD void $dtor();
64 // NOLINTEND
65};
Definition ActorRuntimeID.h:5