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