LeviLamina
Loading...
Searching...
No Matches
DecoratedPotRecipe.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/crafting/MultiRecipe.h"
7
8// auto generated forward declare list
9// clang-format off
11class CraftingContext;
12class ItemInstance;
14namespace mce { class UUID; }
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 DecoratedPotRecipe& operator=(DecoratedPotRecipe const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 5
34 virtual bool matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const /*override*/;
35
36 // vIndex: 1
37 virtual ::std::vector<::ItemInstance> const& assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const
38 /*override*/;
39
40 // vIndex: 8
41 virtual ::std::vector<::ItemInstance> const& getResultItems() const /*override*/;
42
43 // vIndex: 2
44 virtual int getCraftingSize() const /*override*/;
45
46 // vIndex: 3
47 virtual ::RecipeIngredient const& getIngredient(int, int) const /*override*/;
48
49 // vIndex: 6
50 virtual int size() const /*override*/;
51
52 // vIndex: 0
53 virtual ~DecoratedPotRecipe() /*override*/ = default;
54 // NOLINTEND
55
56public:
57 // member functions
58 // NOLINTBEGIN
59 MCAPI DecoratedPotRecipe(::std::string const& recipeId, ::mce::UUID const& uuid);
60 // NOLINTEND
61
62public:
63 // static variables
64 // NOLINTBEGIN
65 MCAPI static ::mce::UUID const& ID();
66 // NOLINTEND
67
68public:
69 // constructor thunks
70 // NOLINTBEGIN
71 MCAPI void* $ctor(::std::string const& recipeId, ::mce::UUID const& uuid);
72 // NOLINTEND
73
74public:
75 // destructor thunk
76 // NOLINTBEGIN
77
78 // NOLINTEND
79
80public:
81 // virtual function thunks
82 // NOLINTBEGIN
83 MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const;
84
85 MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const;
86
87 MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const;
88
89 MCFOLD int $getCraftingSize() const;
90
91 MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const;
92
93 MCFOLD int $size() const;
94 // NOLINTEND
95
96public:
97 // vftables
98 // NOLINTBEGIN
99 MCAPI static void** $vftable();
100 // NOLINTEND
101};
Definition CraftingContainer.h:14
Definition CraftingContext.h:13
Definition DecoratedPotRecipe.h:17
Definition ItemInstance.h:16
Definition MultiRecipe.h:13
Definition RecipeIngredient.h:17
Definition UUID.h:7
Definition Alias.h:14