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