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
36 virtual ~DyePowderItem() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCFOLD ::Item& $setIconInfo(::std::string const& name, int id);
43
44 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
45
46 MCFOLD bool $isDye() const;
47
48#ifdef LL_PLAT_S
49 MCFOLD ::ItemColor $getItemColor() const;
50#endif
51
52 MCFOLD bool $isValidAuxValue(int auxValue) const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
Definition CompoundTag.h:23
Definition DyePowderItem.h:15
Definition ItemDescriptor.h:23