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