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 // prevent constructor by default
24 DyePowderItem();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ::Item& setIconInfo(::std::string const& name, int id) /*override*/;
30
31 virtual ::std::string buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const
32 /*override*/;
33
34 virtual bool isDye() const /*override*/;
35
36 virtual ::ItemColor getItemColor() const /*override*/;
37
38 virtual bool isValidAuxValue(int auxValue) const /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI DyePowderItem(::std::string const& name, int id, ::ItemColor color);
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(::std::string const& name, int id, ::ItemColor color);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCFOLD ::Item& $setIconInfo(::std::string const& name, int id);
57
58 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
59
60 MCFOLD bool $isDye() const;
61
62 MCFOLD ::ItemColor $getItemColor() const;
63
64 MCFOLD bool $isValidAuxValue(int auxValue) const;
65
66
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition CompoundTag.h:23
Definition ItemDescriptor.h:25