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 // NOLINTEND
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI MultiRecipe(::std::string const& recipeId, ::HashedString tag);
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::std::string const& recipeId, ::HashedString tag);
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCFOLD bool $isMultiRecipe() const;
44
45 MCFOLD bool $isShapeless() const;
46
47 MCFOLD bool $hasDataDrivenResult() const;
48
49
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCAPI static void** $vftable();
56 // NOLINTEND
57};
Definition HashedString.h:5