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