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
8struct EmotePacketPayload {
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
29 EmotePacketPayload();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI EmotePacketPayload(::EmotePacketPayload const&);
35
36#ifdef LL_PLAT_C
37 MCAPI EmotePacketPayload(
38 ::ActorRuntimeID runtimeId,
39 ::std::string const& pieceId,
40 uint emoteTicks,
41 ::std::string const& xuid,
42 ::std::string const& platformId
43 );
44
45 MCAPI bool isEmoteChatMuted() const;
46#endif
47
48 MCAPI bool isServerSide() const;
49
50 MCAPI ::EmotePacketPayload& operator=(::EmotePacketPayload&&);
51
52 MCAPI ::EmotePacketPayload& operator=(::EmotePacketPayload const&);
53
54 MCAPI void setEmoteChatMute();
55
56 MCAPI void setServerSide();
57
58 MCAPI ~EmotePacketPayload();
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::EmotePacketPayload const&);
65
66#ifdef LL_PLAT_C
67 MCAPI void* $ctor(
68 ::ActorRuntimeID runtimeId,
69 ::std::string const& pieceId,
70 uint emoteTicks,
71 ::std::string const& xuid,
72 ::std::string const& platformId
73 );
74#endif
75 // NOLINTEND
76
77public:
78 // destructor thunk
79 // NOLINTBEGIN
80 MCFOLD void $dtor();
81 // NOLINTEND
82};
Definition ActorRuntimeID.h:5