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