LeviLamina
Loading...
Searching...
No Matches
FurnaceInputContainerController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7#include "mc/world/containers/controllers/FurnaceContainerController.h"
8
9// auto generated forward declare list
10// clang-format off
11class ContainerModel;
12class ItemStackBase;
13class Recipes;
14// clang-format on
15
16class FurnaceInputContainerController : public ::FurnaceContainerController {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 48, ::HashedString> mRecipeTag;
21 // NOLINTEND
22
23#ifdef LL_PLAT_S
24#else // LL_PLAT_C
25public:
26 // prevent constructor by default
27 FurnaceInputContainerController();
28
29#endif
30public:
31 // virtual functions
32 // NOLINTBEGIN
33#ifdef LL_PLAT_S
34 virtual ~FurnaceInputContainerController() /*override*/ = default;
35#else // LL_PLAT_C
36 virtual ~FurnaceInputContainerController() /*override*/;
37#endif
38
39#ifdef LL_PLAT_S
40 virtual bool isItemFiltered(::Recipes const&, ::ItemStackBase const&) const /*override*/;
41#else // LL_PLAT_C
42 virtual bool isItemFiltered(::Recipes const& recipes, ::ItemStackBase const& item) const /*override*/;
43#endif
44
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50#ifdef LL_PLAT_C
51 MCNAPI FurnaceInputContainerController(
52 ::std::shared_ptr<::ContainerModel> containerModel,
53 ::HashedString const& recipeTag
54 );
55#endif
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61#ifdef LL_PLAT_C
62 MCNAPI void* $ctor(::std::shared_ptr<::ContainerModel> containerModel, ::HashedString const& recipeTag);
63#endif
64 // NOLINTEND
65
66public:
67 // destructor thunk
68 // NOLINTBEGIN
69 MCNAPI void $dtor();
70 // NOLINTEND
71
72public:
73 // virtual function thunks
74 // NOLINTBEGIN
75#ifdef LL_PLAT_C
76 MCNAPI bool $isItemFiltered(::Recipes const& recipes, ::ItemStackBase const& item) const;
77#endif
78
79
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
Definition ContainerModel.h:28
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition ItemStackBase.h:52
Definition Recipes.h:36