LeviLamina
Loading...
Searching...
No Matches
MineshaftCrossing.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 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, int> direction;
22 ::ll::TypedStorage<1, 1, bool> isTwoFloored;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ::StructurePieceType getType() const /*override*/;
29
30 virtual void addChildren(
31 ::StructurePiece& startPiece,
32 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
33 ::Random& random
34 ) /*override*/;
35
36 virtual bool postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB) /*override*/;
37
38 virtual ~MineshaftCrossing() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI void _placeSupportPillar(::BlockSource& region, ::BoundingBox const& chunkBB, int x, int y0, int z, int y1);
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI ::StructurePieceType $getType() const;
51
52 MCAPI void $addChildren(
53 ::StructurePiece& startPiece,
54 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
55 ::Random& random
56 );
57
58 MCAPI bool $postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB);
59
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition BlockSource.h:71
Definition BoundingBox.h:13
Definition MineshaftCrossing.h:17
static MCAPI void ** $vftable()
Definition MineshaftPiece.h:17
Definition Random.h:10
Definition StructurePiece.h:18