LeviLamina
Loading...
Searching...
No Matches
GameTestRequestPacket.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;
14namespace gametest { struct TestParameters; }
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::std::string> mTestName;
22 ::ll::TypedStorage<8, 64, ::gametest::TestParameters> mParams;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 0
29 virtual ~GameTestRequestPacket() /*override*/ = default;
30
31 // vIndex: 1
32 virtual ::MinecraftPacketIds getId() const /*override*/;
33
34 // vIndex: 2
35 virtual ::std::string getName() const /*override*/;
36
37 // vIndex: 4
38 virtual void write(::BinaryStream& stream) const /*override*/;
39
40 // vIndex: 8
41 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI ::MinecraftPacketIds $getId() const;
54
55 MCAPI ::std::string $getName() const;
56
57 MCAPI void $write(::BinaryStream& stream) const;
58
59 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition BinaryStream.h:10
Definition GameTestRequestPacket.h:17
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8