LeviLamina
Loading...
Searching...
No Matches
BlockActorDataPacket.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 BinaryStream;
13class BlockPos;
14class CompoundTag;
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<4, 12, ::NetworkBlockPosition> mPos;
24 ::ll::TypedStorage<8, 24, ::CompoundTag> mData;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 1
31 virtual ::MinecraftPacketIds getId() const /*override*/;
32
33 // vIndex: 2
34 virtual ::std::string getName() const /*override*/;
35
36 // vIndex: 4
37 virtual void write(::BinaryStream& stream) const /*override*/;
38
39 // vIndex: 8
40 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
41
42 // vIndex: 0
43 virtual ~BlockActorDataPacket() /*override*/ = default;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCAPI BlockActorDataPacket(::BlockPos const& pos, ::CompoundTag tag);
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor(::BlockPos const& pos, ::CompoundTag tag);
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCFOLD ::MinecraftPacketIds $getId() const;
68
69 MCAPI ::std::string $getName() const;
70
71 MCAPI void $write(::BinaryStream& stream) const;
72
73 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCAPI static void** $vftable();
80 // NOLINTEND
81};
Definition BinaryStream.h:10
Definition BlockActorDataPacket.h:19
Definition BlockPos.h:18
Definition CompoundTag.h:13
Definition NetworkBlockPosition.h:8
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8