LeviLamina
Loading...
Searching...
No Matches
InventoryAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPalette;
9class ItemStack;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<4, 12, ::InventorySource> mSource;
18 ::ll::TypedStorage<4, 4, uint> mSlot;
19 ::ll::TypedStorage<8, 96, ::NetworkItemStackDescriptor> mFromItemDescriptor;
20 ::ll::TypedStorage<8, 96, ::NetworkItemStackDescriptor> mToItemDescriptor;
21 ::ll::TypedStorage<8, 152, ::ItemStack> mFromItem;
22 ::ll::TypedStorage<8, 152, ::ItemStack> mToItem;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
29
30 MCAPI InventoryAction(
31 ::InventorySource source,
32 uint slot,
33 ::NetworkItemStackDescriptor const& fromItem,
35 );
36
37 MCAPI InventoryAction(::InventorySource source, uint slot, ::ItemStack const& fromItem, ::ItemStack const& toItem);
38
39 MCAPI ::InventoryAction& operator=(::InventoryAction const&);
40
41 MCAPI void postLoadItems(::BlockPalette& blockPalette, bool isClientSide);
42
43 MCAPI ~InventoryAction();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::InventoryAction const&);
50
51 MCAPI void* $ctor(
52 ::InventorySource source,
53 uint slot,
54 ::NetworkItemStackDescriptor const& fromItem,
56 );
57
58 MCAPI void* $ctor(::InventorySource source, uint slot, ::ItemStack const& fromItem, ::ItemStack const& toItem);
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCAPI void $dtor();
65 // NOLINTEND
66};
Definition BlockPalette.h:18
Definition InventoryAction.h:13
Definition InventorySource.h:9
Definition ItemStack.h:25
Definition NetworkItemStackDescriptor.h:18