LeviLamina
Loading...
Searching...
No Matches
CraftingContainerController.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 ItemInstance;
11class Recipe;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~CraftingContainerController() /*override*/ = default;
35
36 // vIndex: 1
37 virtual ::ItemInstance const& getRecipeItem(int) const = 0;
38
39 // vIndex: 10
40 virtual void onRecipeSelected(::Recipe const*, uint64, bool);
41
42 // vIndex: 11
43 virtual void clearSelectedRecipe();
44
45 // vIndex: 12
46 virtual ::Recipe const* getSelectedRecipe() const;
47
48 // vIndex: 13
49 virtual void setGhostItem(::ItemInstance const&, int, bool);
50
51 // vIndex: 14
52 virtual ::ItemInstance const& getGhostItem(int) const;
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64
65 // NOLINTEND
66};
Definition ContainerController.h:17
Definition CraftingContainerController.h:14
Definition ItemInstance.h:16
Definition Recipe.h:29
Definition Alias.h:14