LeviLamina
Loading...
Searching...
No Matches
MineshaftStairs.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/MineshaftPiece.h"
7#include "mc/world/level/levelgen/structure/StructurePieceType.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockSource;
12class BoundingBox;
13class Random;
14class StructurePiece;
15// clang-format on
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual ::StructurePieceType getType() const /*override*/;
22
23 virtual void addChildren(
24 ::StructurePiece& startPiece,
25 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
26 ::Random& random
27 ) /*override*/;
28
29 virtual bool postProcess(::BlockSource& region, ::Random& chunkBB, ::BoundingBox const&) /*override*/;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35 MCAPI ::StructurePieceType $getType() const;
36
37 MCAPI void $addChildren(
38 ::StructurePiece& startPiece,
39 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
40 ::Random& random
41 );
42
43 MCAPI bool $postProcess(::BlockSource& region, ::Random& chunkBB, ::BoundingBox const&);
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
Definition BlockSource.h:73
Definition BoundingBox.h:13
Definition MineshaftPiece.h:16
Definition MineshaftStairs.h:17
static MCAPI void ** $vftable()
Definition Random.h:10
Definition StructurePiece.h:21