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 BlockType;
12class Item;
14struct ItemTag;
15// clang-format on
16
17class RecipeIngredient : public ::ItemDescriptorCount {
18public:
19 // prevent constructor by default
20 RecipeIngredient();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ~RecipeIngredient() /*override*/;
26 // NOLINTEND
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI RecipeIngredient(::RecipeIngredient const&);
32
33 MCAPI explicit RecipeIngredient(::ReadOnlyBinaryStream& stream);
34
35 MCAPI RecipeIngredient(::Block const& block, ushort stackSize);
36
37 MCAPI RecipeIngredient(::BlockType const& block, ushort stackSize);
38
39 MCAPI RecipeIngredient(::ItemTag const& itemTag, ushort stackSize);
40
41 MCAPI RecipeIngredient(::Item const& item, int auxValue, ushort stackSize);
42
43 MCAPI RecipeIngredient(::std::string_view item, int auxValue, ushort stackSize);
44
45 MCFOLD ::RecipeIngredient& operator=(::RecipeIngredient const&);
46 // NOLINTEND
47
48public:
49 // static variables
50 // NOLINTBEGIN
51 MCAPI static ::RecipeIngredient& EMPTY_INGREDIENT();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(::RecipeIngredient const&);
58
59 MCAPI void* $ctor(::ReadOnlyBinaryStream& stream);
60
61 MCAPI void* $ctor(::Block const& block, ushort stackSize);
62
63 MCAPI void* $ctor(::BlockType const& block, ushort stackSize);
64
65 MCAPI void* $ctor(::ItemTag const& itemTag, ushort stackSize);
66
67 MCAPI void* $ctor(::Item const& item, int auxValue, ushort stackSize);
68
69 MCAPI void* $ctor(::std::string_view item, int auxValue, ushort stackSize);
70 // NOLINTEND
71
72public:
73 // destructor thunk
74 // NOLINTBEGIN
75 MCFOLD void $dtor();
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCAPI static void** $vftable();
82 // NOLINTEND
83};
Definition BlockType.h:84
Definition Block.h:43
Definition Item.h:69
Definition ReadOnlyBinaryStream.h:8
Definition ItemTag.h:8