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