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