LeviLamina
Loading...
Searching...
No Matches
ShieldRecipe.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 ShieldRecipe& operator=(ShieldRecipe const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual ::std::vector<::ItemInstance> const& assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const
35 /*override*/;
36
37 // vIndex: 2
38 virtual int getCraftingSize() const /*override*/;
39
40 // vIndex: 3
41 virtual ::RecipeIngredient const& getIngredient(int, int) const /*override*/;
42
43 // vIndex: 8
44 virtual ::std::vector<::ItemInstance> const& getResultItems() const /*override*/;
45
46 // vIndex: 4
47 virtual bool isShapeless() const /*override*/;
48
49 // vIndex: 5
50 virtual bool matches(::CraftingContainer const& craftSlots, ::CraftingContext const& craftingContext) const
51 /*override*/;
52
53 // vIndex: 6
54 virtual int size() const /*override*/;
55
56 // vIndex: 0
57 virtual ~ShieldRecipe() /*override*/ = default;
58 // NOLINTEND
59
60public:
61 // member functions
62 // NOLINTBEGIN
63 MCAPI ShieldRecipe(::std::string const& recipeId, ::mce::UUID const* uuid);
64 // NOLINTEND
65
66public:
67 // static variables
68 // NOLINTBEGIN
69 MCAPI static ::mce::UUID& ID();
70 // NOLINTEND
71
72public:
73 // constructor thunks
74 // NOLINTBEGIN
75 MCAPI void* $ctor(::std::string const& recipeId, ::mce::UUID const* uuid);
76 // NOLINTEND
77
78public:
79 // destructor thunk
80 // NOLINTBEGIN
81
82 // NOLINTEND
83
84public:
85 // virtual function thunks
86 // NOLINTBEGIN
87 MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const;
88
89 MCFOLD int $getCraftingSize() const;
90
91 MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const;
92
93 MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const;
94
95 MCFOLD bool $isShapeless() const;
96
97 MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const& craftingContext) const;
98
99 MCFOLD int $size() const;
100 // NOLINTEND
101
102public:
103 // vftables
104 // NOLINTBEGIN
105 MCAPI static void** $vftable();
106 // NOLINTEND
107};
Definition CraftingContainer.h:14
Definition CraftingContext.h:13
Definition ItemInstance.h:16
Definition MultiRecipe.h:13
Definition RecipeIngredient.h:17
Definition ShieldRecipe.h:17
Definition UUID.h:7
Definition Alias.h:14