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
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 // vIndex: 33
28 virtual int getLevelDataForAuxValue(int auxValue) const /*override*/;
29
30 // vIndex: 87
31 virtual ::std::string
32 buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const /*override*/;
33
34 // vIndex: 97
35 virtual void fixupCommon(::ItemStackBase& stack) const /*override*/;
36
37 // vIndex: 96
38 virtual void fixupCommon(::ItemStackBase& stack, ::ILevel& level) const /*override*/;
39
40 // vIndex: 0
41 virtual ~LeavesBlockItem() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCFOLD int $getLevelDataForAuxValue(int auxValue) const;
54
55 MCAPI ::std::string
56 $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const;
57
58 MCAPI void $fixupCommon(::ItemStackBase& stack) const;
59
60 MCFOLD void $fixupCommon(::ItemStackBase& stack, ::ILevel& level) const;
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCAPI static void** $vftable();
67 // NOLINTEND
68};
Definition BlockItem.h:23
Definition Block.h:36
Definition CompoundTag.h:13
Definition ILevel.h:203
Definition ItemDescriptor.h:22
Definition ItemStackBase.h:35
Definition LeavesBlockItem.h:17