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