LeviLamina
Loading...
Searching...
No Matches
ItemStackRequestPacket.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 ItemStackRequestPacket : public ::Packet {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ItemStackRequestBatch>> mRequestBatch;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_S
28 virtual ~ItemStackRequestPacket() /*override*/ = default;
29#else // LL_PLAT_C
30 virtual ~ItemStackRequestPacket() /*override*/;
31#endif
32
33 virtual ::MinecraftPacketIds getId() const /*override*/;
34
35 virtual ::std::string getName() const /*override*/;
36
37 virtual void write(::BinaryStream& stream) const /*override*/;
38
39 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCAPI void $dtor();
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI ::MinecraftPacketIds $getId() const;
52
53 MCAPI ::std::string $getName() const;
54
55 MCAPI void $write(::BinaryStream& stream) const;
56
57 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition BinaryStream.h:11
Definition ItemStackRequestBatch.h:14
Definition ItemStackRequestPacket.h:17
static MCAPI void ** $vftable()
Definition ReadOnlyBinaryStream.h:8