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
15class MaterialReducerInputContainerController : public ::ContainerController {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<1, 1, bool> mEnabled;
20 ::ll::TypedStorage<8, 8, ::BlockReducer*> mBlockReducer;
21 // NOLINTEND
22
23#ifdef LL_PLAT_S
24#else // LL_PLAT_C
25public:
26 // prevent constructor by default
27 MaterialReducerInputContainerController();
28
29#endif
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~MaterialReducerInputContainerController() /*override*/ = default;
34
35 virtual bool isItemAllowed(::ItemStackBase const& item) const /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCNAPI explicit MaterialReducerInputContainerController(::std::shared_ptr<::ContainerModel> containerModel);
43#endif
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49#ifdef LL_PLAT_C
50 MCNAPI void* $ctor(::std::shared_ptr<::ContainerModel> containerModel);
51#endif
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57#ifdef LL_PLAT_C
58 MCNAPI bool $isItemAllowed(::ItemStackBase const& item) const;
59#endif
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition BlockReducer.h:12
Definition ContainerController.h:20
Definition ContainerModel.h:27
Definition ItemStackBase.h:44