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 // prevent constructor by default
23 PlanksBlock();
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ::std::string buildDescriptionId(::Block const&) const /*override*/;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI PlanksBlock(::std::string const& nameId, int id, ::WoodType woodType);
35 // NOLINTEND
36
37public:
38 // static variables
39 // NOLINTBEGIN
40 MCAPI static ::std::array<::std::string, 10> const& WOOD_NAMES();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::std::string const& nameId, int id, ::WoodType woodType);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI ::std::string $buildDescriptionId(::Block const&) const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
Definition Block.h:69