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/ItemStackRequestSlotInfo.h"
9
10// auto generated forward declare list
11// clang-format off
12class BinaryStream;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<1, 1, bool> mIsDstSerialized;
21 ::ll::TypedStorage<1, 1, bool> mIsAmountSerialized;
22 ::ll::TypedStorage<1, 1, uchar> mAmount;
23 ::ll::TypedStorage<4, 40, ::ItemStackRequestSlotInfo> mSrc;
24 ::ll::TypedStorage<4, 40, ::ItemStackRequestSlotInfo> mDst;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 4
31 virtual void _write(::BinaryStream& stream) const /*override*/;
32
33 // vIndex: 5
34 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
35
36 // vIndex: 0
37 virtual ~ItemStackRequestActionTransferBase() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCNAPI void $_write(::BinaryStream& stream) const;
44
45 MCNAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
46 // NOLINTEND
47};
Definition BinaryStream.h:10
Definition ItemStackRequestActionTransferBase.h:16
MCAPI void $_write(::BinaryStream &stream) const
MCAPI ::Bedrock::Result< void > $_read(::ReadOnlyBinaryStream &stream)
Definition ItemStackRequestAction.h:18
Definition ReadOnlyBinaryStream.h:8