LeviLamina
Loading...
Searching...
No Matches
MobArmorEquipmentPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorRuntimeID.h"
7#include "mc/network/MinecraftPacketIds.h"
8#include "mc/network/Packet.h"
9#include "mc/platform/Result.h"
10#include "mc/world/item/NetworkItemStackDescriptor.h"
11
12// auto generated forward declare list
13// clang-format off
14class Actor;
15class BinaryStream;
17// clang-format on
18
19class MobArmorEquipmentPacket : public ::Packet {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 96, ::NetworkItemStackDescriptor> mHead;
24 ::ll::TypedStorage<8, 96, ::NetworkItemStackDescriptor> mTorso;
25 ::ll::TypedStorage<8, 96, ::NetworkItemStackDescriptor> mLegs;
26 ::ll::TypedStorage<8, 96, ::NetworkItemStackDescriptor> mFeet;
27 ::ll::TypedStorage<8, 96, ::NetworkItemStackDescriptor> mBody;
28 ::ll::TypedStorage<8, 8, ::ActorRuntimeID> mRuntimeId;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ::MinecraftPacketIds getId() const /*override*/;
35
36 virtual ::std::string_view getName() const /*override*/;
37
38 virtual void write(::BinaryStream& stream) const /*override*/;
39
40 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
41
42 virtual ~MobArmorEquipmentPacket() /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI MobArmorEquipmentPacket();
49
50 MCAPI explicit MobArmorEquipmentPacket(::Actor const& e);
51
52#ifdef LL_PLAT_C
53 MCAPI void fillIn(::Actor& e) const;
54#endif
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor();
61
62 MCAPI void* $ctor(::Actor const& e);
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCAPI void $dtor();
69 // NOLINTEND
70
71public:
72 // virtual function thunks
73 // NOLINTBEGIN
74 MCFOLD ::MinecraftPacketIds $getId() const;
75
76 MCAPI ::std::string_view $getName() const;
77
78 MCAPI void $write(::BinaryStream& stream) const;
79
80 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
81
82
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCNAPI static void** $vftable();
89 // NOLINTEND
90};
Definition Actor.h:106
Definition BinaryStream.h:11
static MCAPI void ** $vftable()
Definition ReadOnlyBinaryStream.h:8