LeviLamina
Loading...
Searching...
No Matches
ItemStackRequestActionDrop.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7#include "mc/world/inventory/network/ItemStackRequestActionTransferBase.h"
8
9// auto generated forward declare list
10// clang-format off
11class BinaryStream;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<1, 1, bool> mRandomly;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual void _write(::BinaryStream& stream) const /*override*/;
27
28 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
29
30 virtual ~ItemStackRequestActionDrop() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCNAPI_C void* $ctor(uchar amount, bool randomly, ::ItemStackRequestSlotInfo const& src);
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCNAPI void $_write(::BinaryStream& stream) const;
49
50 MCNAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
Definition BinaryStream.h:11
Definition ItemStackRequestActionDrop.h:16
MCAPI ::Bedrock::Result< void > $_read(::ReadOnlyBinaryStream &stream)
MCAPI void $_write(::BinaryStream &stream) const
static MCAPI void ** $vftable()
Definition ItemStackRequestActionTransferBase.h:17
Definition ReadOnlyBinaryStream.h:8
Definition ItemStackRequestSlotInfo.h:11