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/ContainerController.h"
8
9// auto generated forward declare list
10// clang-format off
11class ContainerModel;
12class ItemStackBase;
13class Recipes;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 48, ::HashedString> mRecipeTag;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~FurnaceInputContainerController() /*override*/ = default;
27
28 virtual bool isItemFiltered(::Recipes const& recipes, ::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, ::HashedString const& recipeTag);
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46#ifdef LL_PLAT_C
47 MCNAPI bool $isItemFiltered(::Recipes const& recipes, ::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 ContainerController.h:20
Definition ContainerModel.h:27
Definition FurnaceInputContainerController.h:16
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition ItemStackBase.h:44
Definition Recipes.h:35