LeviLamina
Loading...
Searching...
No Matches
NpcDialoguePacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorUniqueID.h"
7
8// auto generated forward declare list
9// clang-format off
12// clang-format on
13
15public:
16 // NpcDialoguePacketPayload inner types define
17 enum class NpcDialogueActionType : int {
18 Open = 0,
19 Close = 1,
20 };
21
22public:
23 // member variables
24 // NOLINTBEGIN
25 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mNpcId;
26 ::ll::TypedStorage<4, 4, ::NpcDialoguePacketPayload::NpcDialogueActionType> mNpcDialogueActionType;
27 ::ll::TypedStorage<8, 32, ::std::string> mDialogue;
28 ::ll::TypedStorage<8, 32, ::std::string> mSceneName;
29 ::ll::TypedStorage<8, 32, ::std::string> mNpcName;
30 ::ll::TypedStorage<8, 32, ::std::string> mActionJSON;
31 // NOLINTEND
32
33public:
34 // prevent constructor by default
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI ::NpcDialoguePacketPayload& operator=(::NpcDialoguePacketPayload const&);
42
43 MCAPI ::NpcDialoguePacketPayload& operator=(::NpcDialoguePacketPayload&&);
44
46 // NOLINTEND
47
48public:
49 // static functions
50 // NOLINTBEGIN
51 MCAPI static bool initializePacket(
52 ::NpcDialoguePacket& outPacket,
53 ::NpcDialogueStorage const* storage,
54 ::std::string const& sceneName
55 );
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCAPI void $dtor();
62 // NOLINTEND
63};
Definition NpcDialoguePacket.h:19
Definition NpcDialogueStorage.h:14
Definition NpcDialoguePacketPayload.h:14