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