LeviLamina
Loading...
Searching...
No Matches
BedrockBlock.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
8class BedrockBlock : public ::BlockType {
9public:
10 // prevent constructor by default
11 BedrockBlock();
12
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 virtual bool canBeOriginalSurface(bool) const /*override*/;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI BedrockBlock(::std::string const& nameId, int id);
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCFOLD void* $ctor(::std::string const& nameId, int id);
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCFOLD bool $canBeOriginalSurface(bool) const;
35
36
37 // NOLINTEND
38
39public:
40 // vftables
41 // NOLINTBEGIN
42 MCAPI static void** $vftable();
43 // NOLINTEND
44};