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