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 virtual ~FurnaceInputContainerController() /*override*/ = default;
34
35 virtual bool isItemFiltered(::Recipes const& recipes, ::ItemStackBase const& item) const /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCNAPI FurnaceInputContainerController(
43 ::std::shared_ptr<::ContainerModel> containerModel,
44 ::HashedString const& recipeTag
45 );
46#endif
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI void* $ctor(::std::shared_ptr<::ContainerModel> containerModel, ::HashedString const& recipeTag);
54#endif
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60#ifdef LL_PLAT_C
61 MCNAPI bool $isItemFiltered(::Recipes const& recipes, ::ItemStackBase const& item) const;
62#endif
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition ContainerModel.h:27
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition ItemStackBase.h:44
Definition Recipes.h:36