LeviLamina
Loading...
Searching...
No Matches
RecipeIngredient.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemDescriptorCount.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class Item;
12class ItemDescriptor;
14// clang-format on
15
16class RecipeIngredient : public ::ItemDescriptorCount {
17public:
18 // prevent constructor by default
19 RecipeIngredient();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI explicit RecipeIngredient(::ReadOnlyBinaryStream& stream);
25
26 MCAPI RecipeIngredient(::Block const& block, ushort stackSize);
27
28 MCAPI RecipeIngredient(::ItemDescriptor const& descriptor, ushort stackSize);
29
30 MCAPI RecipeIngredient(::Item const& item, int auxValue, ushort stackSize);
31
32 MCAPI RecipeIngredient(::std::string_view item, int auxValue, ushort stackSize);
33
34 MCAPI bool isEmpty() const;
35 // NOLINTEND
36
37public:
38 // static variables
39 // NOLINTBEGIN
40 MCAPI static ::RecipeIngredient& EMPTY_INGREDIENT();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::ReadOnlyBinaryStream& stream);
47
48 MCAPI void* $ctor(::Block const& block, ushort stackSize);
49
50 MCAPI void* $ctor(::ItemDescriptor const& descriptor, ushort stackSize);
51
52 MCAPI void* $ctor(::Item const& item, int auxValue, ushort stackSize);
53
54 MCAPI void* $ctor(::std::string_view item, int auxValue, ushort stackSize);
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
Definition Block.h:69
Definition ItemDescriptor.h:25
Definition Item.h:71
Definition ReadOnlyBinaryStream.h:8