LeviLamina
Loading...
Searching...
No Matches
BoneMealItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/FertilizerItem.h"
7#include "mc/world/item/ItemColor.h"
8
9// auto generated forward declare list
10// clang-format off
11class CompoundTag;
12class Item;
13class ItemDescriptor;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<1, 1, bool const> mAllowLegacyUseAsDye;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ::Item& setIconInfo(::std::string const& name, int index) /*override*/;
27
28 virtual ::std::string buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const /*override*/;
29
30 virtual bool isDye() const /*override*/;
31
32 virtual ::ItemColor getItemColor() const /*override*/;
33
34 virtual bool isValidAuxValue(int auxValue) const /*override*/;
35
36 virtual ~BoneMealItem() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCFOLD ::Item& $setIconInfo(::std::string const& name, int index);
43
44 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const;
45
46 MCFOLD bool $isDye() const;
47
48 MCFOLD ::ItemColor $getItemColor() const;
49
50 MCFOLD bool $isValidAuxValue(int auxValue) const;
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
Definition BoneMealItem.h:16
Definition CompoundTag.h:23
Definition FertilizerItem.h:22
Definition ItemDescriptor.h:23
Definition Item.h:69