LeviLamina
Loading...
Searching...
No Matches
LeavesBlockItem.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 ILevel;
13class ItemDescriptor;
14class ItemStackBase;
15// clang-format on
16
17class LeavesBlockItem : public ::BlockItem {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::Block const*> m_parentBlock;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual int getLevelDataForAuxValue(int auxValue) const /*override*/;
28
29 virtual ::std::string
30 buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const /*override*/;
31
32 virtual void fixupCommon(::ItemStackBase& stack) const /*override*/;
33
34 virtual void fixupCommon(::ItemStackBase& stack, ::ILevel& level) const /*override*/;
35
36 virtual ~LeavesBlockItem() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCFOLD int $getLevelDataForAuxValue(int auxValue) const;
43
44 MCAPI ::std::string
45 $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const;
46
47 MCAPI void $fixupCommon(::ItemStackBase& stack) const;
48
49 MCFOLD void $fixupCommon(::ItemStackBase& stack, ::ILevel& level) const;
50
51
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
Definition Block.h:43
Definition CompoundTag.h:23
Definition ILevel.h:214
Definition ItemDescriptor.h:23
Definition ItemStackBase.h:44
Definition LeavesBlockItem.h:17