LeviLamina
Loading...
Searching...
No Matches
PlanksBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockType.h"
7#include "mc/world/level/block/WoodType.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12// clang-format on
13
14class PlanksBlock : public ::BlockType {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 4, ::WoodType> mWoodType;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ::std::string buildDescriptionId(::Block const&) const /*override*/;
25
26 virtual ~PlanksBlock() /*override*/ = default;
27 // NOLINTEND
28
29public:
30 // static variables
31 // NOLINTBEGIN
32 MCAPI static ::std::array<::std::string, 10> const& WOOD_NAMES();
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCAPI ::std::string $buildDescriptionId(::Block const&) const;
39
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCAPI static void** $vftable();
47 // NOLINTEND
48};
Definition Block.h:43
Definition PlanksBlock.h:14