LeviLamina
Loading...
Searching...
No Matches
MultiRecipe.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/crafting/Recipe.h"
7
8// auto generated forward declare list
9// clang-format off
10class HashedString;
11// clang-format on
12
13class MultiRecipe : public ::Recipe {
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 9
18 virtual bool isMultiRecipe() const /*override*/;
19
20 // vIndex: 4
21 virtual bool isShapeless() const /*override*/;
22
23 // vIndex: 10
24 virtual bool hasDataDrivenResult() const /*override*/;
25
26 // vIndex: 0
27 virtual ~MultiRecipe() /*override*/ = default;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI MultiRecipe(::std::string const& recipeId, ::HashedString tag);
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::std::string const& recipeId, ::HashedString tag);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCFOLD bool $isMultiRecipe() const;
52
53 MCFOLD bool $isShapeless() const;
54
55 MCFOLD bool $hasDataDrivenResult() const;
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition HashedString.h:5
Definition MultiRecipe.h:13
Definition Recipe.h:29