LeviLamina
Loading...
Searching...
No Matches
ExpectedSlotConsume.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ItemStack;
9// clang-format on
10
11struct ExpectedSlotConsume {
12public:
13 // member variables
14 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ExpectedSlotConsume& operator=(ExpectedSlotConsume const&);
23 ExpectedSlotConsume(ExpectedSlotConsume const&);
24 ExpectedSlotConsume();
25
26public:
27 // member functions
28 // NOLINTBEGIN
30 ::FullContainerName const& openContainerNetId,
31 uchar slot,
32 ::ItemStack const& item,
33 uchar amountOverride
34 );
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI void*
41 $ctor(::FullContainerName const& openContainerNetId, uchar slot, ::ItemStack const& item, uchar amountOverride);
42 // NOLINTEND
43};
Definition ItemStack.h:35
MCAPI void * $ctor(::FullContainerName const &openContainerNetId, uchar slot, ::ItemStack const &item, uchar amountOverride)
MCAPI ExpectedSlotConsume(::FullContainerName const &openContainerNetId, uchar slot, ::ItemStack const &item, uchar amountOverride)
Definition FullContainerName.h:8
Definition Alias.h:14