LeviLamina
Loading...
Searching...
No Matches
MangroveRootsBlock.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
8// auto generated forward declare list
9// clang-format off
10class Material;
11// clang-format on
12
13class MangroveRootsBlock : public ::BlockType {
14public:
15 // prevent constructor by default
16 MangroveRootsBlock();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI MangroveRootsBlock(::std::string const& nameId, int id, ::Material const& material);
22 // NOLINTEND
23
24public:
25 // constructor thunks
26 // NOLINTBEGIN
27 MCAPI void* $ctor(::std::string const& nameId, int id, ::Material const& material);
28 // NOLINTEND
29
30public:
31 // vftables
32 // NOLINTBEGIN
33 MCAPI static void** $vftable();
34 // NOLINTEND
35};
Definition Material.h:8