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 // prevent constructor by default
17
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 9
22 virtual bool isMultiRecipe() const /*override*/;
23
24 // vIndex: 4
25 virtual bool isShapeless() const /*override*/;
26
27 // vIndex: 10
28 virtual bool hasDataDrivenResult() const /*override*/;
29
30 // vIndex: 0
31 virtual ~MultiRecipe() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI MultiRecipe(::std::string const& recipeId, ::HashedString tag);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::std::string const& recipeId, ::HashedString tag);
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCFOLD bool $isMultiRecipe() const;
50
51 MCFOLD bool $isShapeless() const;
52
53 MCFOLD bool $hasDataDrivenResult() const;
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition HashedString.h:5
Definition MultiRecipe.h:13
static MCAPI void ** $vftable()
Definition Recipe.h:29