LeviLamina
Loading...
Searching...
No Matches
CraftingOutputContainerController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/containers/controllers/CraftingContainerController.h"
7#include "mc/world/item/ItemInstance.h"
8
9// auto generated forward declare list
10// clang-format off
11class Recipe;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 128, ::ItemInstance> mRecipeItem;
19 ::ll::TypedStorage<1, 1, bool> mIsRecipeCraftable;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 0
26 virtual ~CraftingOutputContainerController() /*override*/ = default;
27
28 // vIndex: 5
29 virtual int getBackgroundStyle(int, bool) const /*override*/;
30
31 // vIndex: 10
32 virtual void onRecipeSelected(::Recipe const*, uint64, bool) /*override*/;
33
34 // vIndex: 1
35 virtual ::ItemInstance const& getRecipeItem(int) const /*override*/;
36
37 // vIndex: 11
38 virtual void clearSelectedRecipe() /*override*/;
39
40 // vIndex: 8
41 virtual bool _canRemove(int, int) const /*override*/;
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47
48 // NOLINTEND
49};
Definition CraftingContainerController.h:14
Definition CraftingOutputContainerController.h:14
Definition Recipe.h:29