LeviLamina
Loading...
Searching...
No Matches
BannerAddPatternRecipe.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7#include "mc/world/item/crafting/MultiRecipe.h"
8
9// auto generated forward declare list
10// clang-format off
11class BannerPattern;
13class CraftingContext;
14class ItemInstance;
16namespace mce { class UUID; }
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 1
36 virtual ::std::vector<::ItemInstance> const& assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const
37 /*override*/;
38
39 // vIndex: 2
40 virtual int getCraftingSize() const /*override*/;
41
42 // vIndex: 3
43 virtual ::RecipeIngredient const& getIngredient(int, int) const /*override*/;
44
45 // vIndex: 8
46 virtual ::std::vector<::ItemInstance> const& getResultItems() const /*override*/;
47
48 // vIndex: 5
49 virtual bool matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const /*override*/;
50
51 // vIndex: 6
52 virtual int size() const /*override*/;
53
54 // vIndex: 0
55 virtual ~BannerAddPatternRecipe() /*override*/ = default;
56 // NOLINTEND
57
58public:
59 // member functions
60 // NOLINTBEGIN
61 MCAPI BannerAddPatternRecipe(::std::string const& recipeId, ::mce::UUID const& uuid);
62
63 MCAPI ::Bedrock::NonOwnerPointer<::BannerPattern const> const matchPatterns(::CraftingContainer const& craftSlots
64 ) const;
65 // NOLINTEND
66
67public:
68 // static variables
69 // NOLINTBEGIN
70 MCAPI static ::mce::UUID const& ID();
71 // NOLINTEND
72
73public:
74 // constructor thunks
75 // NOLINTBEGIN
76 MCAPI void* $ctor(::std::string const& recipeId, ::mce::UUID const& uuid);
77 // NOLINTEND
78
79public:
80 // destructor thunk
81 // NOLINTBEGIN
82
83 // NOLINTEND
84
85public:
86 // virtual function thunks
87 // NOLINTBEGIN
88 MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const;
89
90 MCFOLD int $getCraftingSize() const;
91
92 MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const;
93
94 MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const;
95
96 MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const;
97
98 MCFOLD int $size() const;
99 // NOLINTEND
100
101public:
102 // vftables
103 // NOLINTBEGIN
104 MCAPI static void** $vftable();
105 // NOLINTEND
106};
Definition BannerAddPatternRecipe.h:19
Definition BannerPattern.h:13
Definition CraftingContainer.h:14
Definition CraftingContext.h:13
Definition ItemInstance.h:16
Definition MultiRecipe.h:13
Definition RecipeIngredient.h:17
Definition UUID.h:7
Definition Alias.h:14