LeviLamina
Loading...
Searching...
No Matches
GlowStickItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ChemistryStickItem.h"
7#include "mc/world/item/ItemColor.h"
8
9// auto generated forward declare list
10// clang-format off
11class CompoundTag;
12class ItemDescriptor;
13struct Brightness;
14// clang-format on
15
16class GlowStickItem : public ::ChemistryStickItem {
17public:
18 // prevent constructor by default
19 GlowStickItem();
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ::Brightness getLightEmission(int auxValue) const /*override*/;
25
26 virtual ::std::string buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const
27 /*override*/;
28
29 virtual bool isValidAuxValue(int auxValue) const /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI GlowStickItem(::std::string const& name, int id);
36 // NOLINTEND
37
38public:
39 // static variables
40 // NOLINTBEGIN
41 MCAPI static ::std::add_lvalue_reference_t<::ItemColor const[]> COLORS();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::std::string const& name, int id);
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCFOLD ::Brightness $getLightEmission(int auxValue) const;
54
55 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
56
57 MCAPI bool $isValidAuxValue(int auxValue) const;
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
static MCAPI void ** $vftable()
Definition CompoundTag.h:23
Definition ItemDescriptor.h:25
Definition Brightness.h:8