LeviLamina
Loading...
Searching...
No Matches
SubClientLoginPacket.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.h"
8#include "mc/platform/Result.h"
9
10// auto generated forward declare list
11// clang-format off
12class BinaryStream;
15// clang-format on
16
17class SubClientLoginPacket : public ::Packet {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::SubClientConnectionRequest>> mConnectionRequest;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_S
28 virtual ~SubClientLoginPacket() /*override*/ = default;
29#else // LL_PLAT_C
30 virtual ~SubClientLoginPacket() /*override*/;
31#endif
32
33 virtual ::std::string getName() const /*override*/;
34
35 virtual ::MinecraftPacketIds getId() const /*override*/;
36
37 virtual void write(::BinaryStream& stream) const /*override*/;
38
39 virtual bool disallowBatching() const /*override*/;
40
41 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCAPI void $dtor();
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI ::std::string $getName() const;
54
55 MCAPI ::MinecraftPacketIds $getId() const;
56
57 MCAPI void $write(::BinaryStream& stream) const;
58
59 MCFOLD bool $disallowBatching() const;
60
61 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
62
63
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
Definition BinaryStream.h:11
Definition ReadOnlyBinaryStream.h:8
Definition SubClientConnectionRequest.h:27
Definition SubClientLoginPacket.h:17
static MCAPI void ** $vftable()