LeviLamina
Loading...
Searching...
No Matches
EmoteListPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/MinecraftPacketIds.h"
7#include "mc/network/packet/Packet.h"
8#include "mc/platform/Result.h"
9
10// auto generated forward declare list
11// clang-format off
12class ActorRuntimeID;
13class BinaryStream;
15namespace mce { class UUID; }
16// clang-format on
17
18class EmoteListPacket : public ::Packet {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::ActorRuntimeID> mRuntimeId;
23 ::ll::TypedStorage<8, 24, ::std::vector<::mce::UUID>> mEmotePieceIds;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 1
30 virtual ::MinecraftPacketIds getId() const /*override*/;
31
32 // vIndex: 2
33 virtual ::std::string getName() const /*override*/;
34
35 // vIndex: 4
36 virtual void write(::BinaryStream& stream) const /*override*/;
37
38 // vIndex: 8
39 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
40
41 // vIndex: 0
42 virtual ~EmoteListPacket() /*override*/;
43 // NOLINTEND
44
45public:
46 // static variables
47 // NOLINTBEGIN
48 MCAPI static int const& MAX_EMOTE_PIECE_IDS();
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI ::MinecraftPacketIds $getId() const;
61
62 MCAPI ::std::string $getName() const;
63
64 MCAPI void $write(::BinaryStream& stream) const;
65
66 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition ActorRuntimeID.h:5
Definition BinaryStream.h:10
Definition EmoteListPacket.h:18
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8