LeviLamina
Loading...
Searching...
No Matches
AddPaintingPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/legacy/ActorRuntimeID.h"
8#include "mc/legacy/ActorUniqueID.h"
9#include "mc/network/MinecraftPacketIds.h"
10#include "mc/network/packet/AddActorBasePacket.h"
11#include "mc/platform/Result.h"
12
13// auto generated forward declare list
14// clang-format off
15class BinaryStream;
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mEntityId;
24 ::ll::TypedStorage<8, 8, ::ActorRuntimeID> mRuntimeId;
25 ::ll::TypedStorage<4, 12, ::Vec3> mPos;
26 ::ll::TypedStorage<4, 4, int> mDir;
27 ::ll::TypedStorage<8, 32, ::std::string> mMotif;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual ::MinecraftPacketIds getId() const /*override*/;
35
36 // vIndex: 2
37 virtual ::std::string getName() const /*override*/;
38
39 // vIndex: 4
40 virtual void write(::BinaryStream& stream) const /*override*/;
41
42 // vIndex: 8
43 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
44
45 // vIndex: 0
46 virtual ~AddPaintingPacket() /*override*/ = default;
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI ::MinecraftPacketIds $getId() const;
53
54 MCAPI ::std::string $getName() const;
55
56 MCAPI void $write(::BinaryStream& stream) const;
57
58 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition AddActorBasePacket.h:15
Definition AddPaintingPacket.h:19
static MCAPI void ** $vftable()
Definition BinaryStream.h:10
Definition ReadOnlyBinaryStream.h:8