LeviLamina
Loading...
Searching...
No Matches
RequestChunkRadiusPacket.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;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, int> mChunkRadius;
21 ::ll::TypedStorage<1, 1, uchar> mMaxChunkRadius;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual ::MinecraftPacketIds getId() const /*override*/;
29
30 // vIndex: 2
31 virtual ::std::string getName() const /*override*/;
32
33 // vIndex: 4
34 virtual void write(::BinaryStream& stream) const /*override*/;
35
36 // vIndex: 8
37 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
38
39 // vIndex: 0
40 virtual ~RequestChunkRadiusPacket() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46
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 MCAPI static void** $vftable();
65 // NOLINTEND
66};
Definition BinaryStream.h:10
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8
Definition RequestChunkRadiusPacket.h:16