LeviLamina
Loading...
Searching...
No Matches
MaterialReducerInputContainerController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/containers/controllers/ContainerController.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockReducer;
11class ContainerModel;
12class ItemStackBase;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<1, 1, bool> mEnabled;
20 ::ll::TypedStorage<8, 8, ::BlockReducer*> mBlockReducer;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~MaterialReducerInputContainerController() /*override*/ = default;
27
28 virtual bool isItemAllowed(::ItemStackBase const& item) const /*override*/;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI_C void* $ctor(::std::shared_ptr<::ContainerModel> containerModel);
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46#ifdef LL_PLAT_C
47 MCNAPI bool $isItemAllowed(::ItemStackBase const& item) const;
48#endif
49
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition BlockReducer.h:12
Definition ContainerController.h:20
Definition ContainerModel.h:27
Definition ItemStackBase.h:44
Definition MaterialReducerInputContainerController.h:15