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