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