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