LeviLamina
Loading...
Searching...
No Matches
ItemStackRequestActionTransferBase.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/ItemStackRequestAction.h"
8#include "mc/world/inventory/network/ItemStackRequestActionType.h"
9#include "mc/world/inventory/network/ItemStackRequestSlotInfo.h"
10
11// auto generated forward declare list
12// clang-format off
13class BinaryStream;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 1, bool> mIsDstSerialized;
22 ::ll::TypedStorage<1, 1, bool> mIsAmountSerialized;
23 ::ll::TypedStorage<1, 1, uchar> mAmount;
24 ::ll::TypedStorage<4, 40, ::ItemStackRequestSlotInfo> mSrc;
25 ::ll::TypedStorage<4, 40, ::ItemStackRequestSlotInfo> mDst;
26 // NOLINTEND
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual void _write(::BinaryStream& stream) const /*override*/;
32
33 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
34
35 virtual ~ItemStackRequestActionTransferBase() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI_C void* $ctor(
48 ::ItemStackRequestActionType actionType,
49 uchar amount,
52 bool isDstSerialized,
53 bool isAmountSerialized
54 );
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCNAPI void $_write(::BinaryStream& stream) const;
61
62 MCNAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition BinaryStream.h:11
Definition ItemStackRequestActionTransferBase.h:17
MCAPI void $_write(::BinaryStream &stream) const
MCAPI ::Bedrock::Result< void > $_read(::ReadOnlyBinaryStream &stream)
static MCAPI void ** $vftable()
Definition ItemStackRequestAction.h:18
Definition ReadOnlyBinaryStream.h:8
Definition ItemStackRequestSlotInfo.h:11