LeviLamina
Loading...
Searching...
No Matches
MapExtendingRecipe.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 MapExtendingRecipe& operator=(MapExtendingRecipe 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&
40 assemble(::CraftingContainer& craftSlots, ::CraftingContext& craftingContext) const /*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 ~MapExtendingRecipe() /*override*/ = default;
56 // NOLINTEND
57
58public:
59 // member functions
60 // NOLINTBEGIN
61 MCAPI void _updateMapInstance(::ItemInstance& mapInstance, ::CraftingContext& craftingContext) const;
62 // NOLINTEND
63
64public:
65 // static functions
66 // NOLINTBEGIN
67 MCAPI static ::HashedString _getTagForUUID(::mce::UUID const& uuid);
68 // NOLINTEND
69
70public:
71 // static variables
72 // NOLINTBEGIN
73 MCAPI static ::mce::UUID const& CartographyTableID();
74
75 MCAPI static ::mce::UUID const& CraftingTableID();
76 // NOLINTEND
77
78public:
79 // destructor thunk
80 // NOLINTBEGIN
81
82 // NOLINTEND
83
84public:
85 // virtual function thunks
86 // NOLINTBEGIN
87 MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const& craftingContext) const;
88
89 MCAPI ::std::vector<::ItemInstance> const&
90 $assemble(::CraftingContainer& craftSlots, ::CraftingContext& craftingContext) const;
91
92 MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const;
93
94 MCFOLD int $getCraftingSize() const;
95
96 MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const;
97
98 MCFOLD int $size() const;
99 // NOLINTEND
100
101public:
102 // vftables
103 // NOLINTBEGIN
104 MCAPI static void** $vftable();
105 // NOLINTEND
106};
Definition CraftingContainer.h:14
Definition CraftingContext.h:13
Definition HashedString.h:5
Definition ItemInstance.h:16
Definition MapExtendingRecipe.h:18
Definition MultiRecipe.h:13
Definition RecipeIngredient.h:17
Definition UUID.h:7
Definition Alias.h:14