LeviLamina
Loading...
Searching...
No Matches
CreatePhotoPacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorUniqueID.h"
7
8struct CreatePhotoPacketPayload {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mId;
13 ::ll::TypedStorage<8, 32, ::std::string> mPhotoName;
14 ::ll::TypedStorage<8, 32, ::std::string> mPhotoItemName;
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 CreatePhotoPacketPayload& operator=(CreatePhotoPacketPayload const&);
20 CreatePhotoPacketPayload();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI CreatePhotoPacketPayload(::CreatePhotoPacketPayload const&);
26
27#ifdef LL_PLAT_C
28 MCAPI CreatePhotoPacketPayload(::ActorUniqueID, ::std::string const& photoName);
29#endif
30
31 MCFOLD ::CreatePhotoPacketPayload& operator=(::CreatePhotoPacketPayload&&);
32
33 MCAPI ~CreatePhotoPacketPayload();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCFOLD void* $ctor(::CreatePhotoPacketPayload const&);
40
41#ifdef LL_PLAT_C
42 MCAPI void* $ctor(::ActorUniqueID, ::std::string const& photoName);
43#endif
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCFOLD void $dtor();
50 // NOLINTEND
51};
Definition ActorUniqueID.h:10