LeviLamina
Loading...
Searching...
No Matches
EnchantingInputContainerController.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 ContainerModel;
11class ItemDescriptor;
12class ItemStackBase;
13class Recipes;
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual ~EnchantingInputContainerController() /*override*/ = default;
21
22 virtual bool isItemFiltered(::Recipes const&, ::ItemStackBase const& item) const /*override*/;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCNAPI_C bool _isEnchantingInputItem(::ItemDescriptor const& item) const;
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCNAPI_C void* $ctor(::std::shared_ptr<::ContainerModel> containerModel);
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40#ifdef LL_PLAT_C
41 MCNAPI bool $isItemFiltered(::Recipes const&, ::ItemStackBase const& item) const;
42#endif
43
44
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
Definition ContainerController.h:20
Definition ContainerModel.h:27
Definition EnchantingInputContainerController.h:16
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:23
Definition ItemStackBase.h:44
Definition Recipes.h:35