LeviLamina
Loading...
Searching...
No Matches
ChemistryIngredient.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/CompoundType.h"
7#include "mc/world/level/block/ElementType.h"
8
10public:
11 // member variables
12 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI ChemistryIngredient(::CompoundType compound, int stackCount);
26
27 MCAPI ChemistryIngredient(::ElementType element, int stackCount);
28
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCAPI void* $ctor(::CompoundType compound, int stackCount);
36
37 MCAPI void* $ctor(::ElementType element, int stackCount);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCFOLD void $dtor();
44 // NOLINTEND
45};
Definition ChemistryIngredient.h:9
Definition Alias.h:14