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 id) /*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 // virtual function thunks
47 // NOLINTBEGIN
48 MCFOLD ::Item& $setIconInfo(::std::string const& name, int id);
49
50 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
51
52 MCFOLD bool $isDye() const;
53
54 MCFOLD ::ItemColor $getItemColor() const;
55
56 MCFOLD bool $isValidAuxValue(int auxValue) const;
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
Definition CompoundTag.h:13
Definition DyePowderItem.h:15
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:22
Definition Item.h:65