LeviLamina
Loading...
Searching...
No Matches
WoolBlockItem.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 CompoundTag;
11class ItemDescriptor;
12// clang-format on
13
14class WoolBlockItem : public ::BlockItem {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<1, 1, bool> mIsCarpet;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 87
25 virtual ::std::string buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const
26 /*override*/;
27
28 // vIndex: 0
29 virtual ~WoolBlockItem() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCAPI static void** $vftable();
48 // NOLINTEND
49};
Definition BlockItem.h:23
Definition CompoundTag.h:13
Definition ItemDescriptor.h:22
Definition WoolBlockItem.h:14