LeviLamina
Loading...
Searching...
No Matches
CodeBuilderSourcePacket.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/options/code_builder_storage_query_options/Category.h"
9#include "mc/options/code_builder_storage_query_options/Operation.h"
10#include "mc/platform/Result.h"
11#include "mc/world/level/code_builder_execution_state/CodeStatus.h"
12
13// auto generated forward declare list
14// clang-format off
15class BinaryStream;
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<1, 1, ::CodeBuilderStorageQueryOptions::Operation> mOperation;
24 ::ll::TypedStorage<1, 1, ::CodeBuilderStorageQueryOptions::Category> mCategory;
25 ::ll::TypedStorage<1, 1, ::CodeBuilderExecutionState::CodeStatus> mCodeStatus;
26 // NOLINTEND
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
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
43 // vIndex: 0
44 virtual ~CodeBuilderSourcePacket() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI ::MinecraftPacketIds $getId() const;
57
58 MCAPI ::std::string $getName() const;
59
60 MCAPI void $write(::BinaryStream& stream) const;
61
62 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCAPI static void** $vftable();
69 // NOLINTEND
70};
Definition BinaryStream.h:10
Definition CodeBuilderSourcePacket.h:19
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8