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 // vIndex: 107
26 virtual ::Item& setIconInfo(::std::string const& name, int index) /*override*/;
27
28 // vIndex: 87
29 virtual ::std::string buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const
30 /*override*/;
31
32 // vIndex: 16
33 virtual bool isDye() const /*override*/;
34
35 // vIndex: 17
36 virtual ::ItemColor getItemColor() const /*override*/;
37
38 // vIndex: 60
39 virtual bool isValidAuxValue(int auxValue) const /*override*/;
40
41 // vIndex: 0
42 virtual ~DyePowderItem() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCFOLD ::Item& $setIconInfo(::std::string const& name, int index);
55
56 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
57
58 MCFOLD bool $isDye() const;
59
60 MCFOLD bool $isValidAuxValue(int auxValue) const;
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCAPI static void** $vftable();
67 // NOLINTEND
68};
Definition CompoundTag.h:13
Definition DyePowderItem.h:15
Definition ItemDescriptor.h:22
Definition Item.h:65