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
17class DecoratedPotRecipe : public ::MultiRecipe {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::std::vector<::ItemInstance>> mResults;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 DecoratedPotRecipe();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual bool matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const /*override*/;
32
33 virtual ::std::vector<::ItemInstance> const& assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const
34 /*override*/;
35
36 virtual ::std::vector<::ItemInstance> const& getResultItems() const /*override*/;
37
38 virtual int getCraftingSize() const /*override*/;
39
40 virtual ::RecipeIngredient const& getIngredient(int, int) const /*override*/;
41
42 virtual int size() const /*override*/;
43
44 virtual ~DecoratedPotRecipe() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI DecoratedPotRecipe(::std::string const& recipeId, ::mce::UUID const& uuid);
51 // NOLINTEND
52
53public:
54 // static variables
55 // NOLINTBEGIN
56 MCAPI static ::mce::UUID const& ID();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(::std::string const& recipeId, ::mce::UUID const& uuid);
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const;
69
70 MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const;
71
72 MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const;
73
74 MCFOLD int $getCraftingSize() const;
75
76 MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const;
77
78 MCFOLD int $size() const;
79
80
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCAPI static void** $vftable();
87 // NOLINTEND
88};
Definition CraftingContainer.h:14
Definition CraftingContext.h:20
Definition ItemInstance.h:15
Definition RecipeIngredient.h:17
Definition UUID.h:7