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/network/MinecraftPacketIds.h"
7#include "mc/network/packet/AddActorBasePacket.h"
8#include "mc/platform/Result.h"
9
10// auto generated forward declare list
11// clang-format off
12class ActorRuntimeID;
13class BinaryStream;
15class Vec3;
16struct ActorUniqueID;
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 // destructor thunk
51 // NOLINTBEGIN
52
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCAPI ::MinecraftPacketIds $getId() const;
59
60 MCAPI ::std::string $getName() const;
61
62 MCAPI void $write(::BinaryStream& stream) const;
63
64 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
Definition ActorRuntimeID.h:5
Definition AddActorBasePacket.h:15
Definition AddPaintingPacket.h:19
Definition BinaryStream.h:10
Definition ReadOnlyBinaryStream.h:8
Definition Vec3.h:10
Definition ActorUniqueID.h:5