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 // vIndex: 2
22 virtual ::StructurePieceType getType() const /*override*/;
23
24 // vIndex: 3
25 virtual void addChildren(
26 ::StructurePiece& startPiece,
27 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
28 ::Random& random
29 ) /*override*/;
30
31 // vIndex: 4
32 virtual bool postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB) /*override*/;
33
34 // vIndex: 0
35 virtual ~MineshaftStairs() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI ::StructurePieceType $getType() const;
48
49 MCAPI void $addChildren(
50 ::StructurePiece& startPiece,
51 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
52 ::Random& random
53 );
54
55 MCAPI bool $postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB);
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BlockSource.h:67
Definition BoundingBox.h:18
Definition MineshaftPiece.h:17
Definition MineshaftStairs.h:17
Definition Random.h:16
Definition StructurePiece.h:18