LeviLamina
Loading...
Searching...
No Matches
AvailableActorIdentifiersPacket.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;
14struct ActorInfo;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::std::vector<::ActorInfo>> mIdentifierList;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 0
28 virtual ~AvailableActorIdentifiersPacket() /*override*/;
29
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: 5
40 virtual ::Bedrock::Result<void> read(::ReadOnlyBinaryStream& stream) /*override*/;
41
42 // vIndex: 8
43 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCFOLD ::MinecraftPacketIds $getId() const;
56
57 MCAPI ::std::string $getName() const;
58
59 MCAPI void $write(::BinaryStream& stream) const;
60
61 MCAPI ::Bedrock::Result<void> $read(::ReadOnlyBinaryStream& stream);
62
63 MCFOLD ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCAPI static void** $vftable();
70 // NOLINTEND
71};
Definition AvailableActorIdentifiersPacket.h:17
Definition BinaryStream.h:10
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8
Definition ActorInfo.h:10