LeviLamina
Loading...
Searching...
No Matches
CobblestoneBlock.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 Block;
11class Material;
12// clang-format on
13
14class CobblestoneBlock : public ::BlockType {
15public:
16 // prevent constructor by default
17 CobblestoneBlock();
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual ::Block const* tryGetInfested(::Block const& block) const /*override*/;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI CobblestoneBlock(::std::string const& nameId, int id, ::Material const& material);
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCAPI void* $ctor(::std::string const& nameId, int id, ::Material const& material);
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCAPI ::Block const* $tryGetInfested(::Block const& block) const;
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCAPI static void** $vftable();
49 // NOLINTEND
50};
Definition Block.h:69
Definition Material.h:8