LeviLamina
Loading...
Searching...
No Matches
EmotePacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorRuntimeID.h"
7
9public:
10 // EmotePacketPayload inner types define
11 enum class Flags : uchar {
12 ServerSide = 1,
13 MuteEmoteChat = 2,
14 };
15
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::ActorRuntimeID> mRuntimeId;
20 ::ll::TypedStorage<8, 32, ::std::string> mPieceId;
21 ::ll::TypedStorage<4, 4, uint> mEmoteTicks;
22 ::ll::TypedStorage<8, 32, ::std::string> mXuid;
23 ::ll::TypedStorage<8, 32, ::std::string> mPlatformId;
24 ::ll::TypedStorage<1, 1, uchar> mFlags;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ::EmotePacketPayload& operator=(::EmotePacketPayload&&);
36
37 MCAPI ::EmotePacketPayload& operator=(::EmotePacketPayload const&);
38
39 MCAPI ~EmotePacketPayload();
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCAPI void $dtor();
46 // NOLINTEND
47};
Definition EmotePacketPayload.h:8