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/BlockLegacy.h"
7#include "mc/world/level/block/WoodType.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class Experiments;
13// clang-format on
14
15class PlanksBlock : public ::BlockLegacy {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, ::WoodType> mWoodType;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 112
26 virtual ::std::string buildDescriptionId(::Block const&) const /*override*/;
27
28 // vIndex: 131
29 virtual void _addHardCodedBlockComponents(::Experiments const& experiments) /*override*/;
30
31 // vIndex: 0
32 virtual ~PlanksBlock() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // static variables
37 // NOLINTBEGIN
38 MCAPI static ::std::array<::std::string, 10> const& WOOD_NAMES();
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI ::std::string $buildDescriptionId(::Block const&) const;
51
52 MCFOLD void $_addHardCodedBlockComponents(::Experiments const& experiments);
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
Definition BlockLegacy.h:88
Definition Block.h:36
Definition Experiments.h:14
Definition PlanksBlock.h:15