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
16 MultiRecipe();
17
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual bool isMultiRecipe() const /*override*/;
22
23 virtual bool isShapeless() const /*override*/;
24
25 virtual bool hasDataDrivenResult() const /*override*/;
26
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 // virtual function thunks
44 // NOLINTBEGIN
45 MCFOLD bool $isMultiRecipe() const;
46
47 MCFOLD bool $isShapeless() const;
48
49 MCFOLD bool $hasDataDrivenResult() const;
50
51
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
Definition HashedString.h:5