LeviLamina
Loading...
Searching...
No Matches
MineshaftRoom.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/BoundingBox.h"
7#include "mc/world/level/levelgen/structure/MineshaftPiece.h"
8#include "mc/world/level/levelgen/structure/StructurePieceType.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockSource;
13class Random;
14class StructurePiece;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::std::vector<::BoundingBox>> childEntranceBoxes;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 2
28 virtual ::StructurePieceType getType() const /*override*/;
29
30 // vIndex: 3
31 virtual void addChildren(
32 ::StructurePiece& startPiece,
33 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
34 ::Random& random
35 ) /*override*/;
36
37 // vIndex: 4
38 virtual bool postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB) /*override*/;
39
40 // vIndex: 1
41 virtual void moveBoundingBox(int dx, int dy, int dz) /*override*/;
42
43 // vIndex: 0
44 virtual ~MineshaftRoom() /*override*/ = default;
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 MCAPI void $moveBoundingBox(int dx, int dy, int dz);
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition BlockSource.h:66
Definition BoundingBox.h:13
Definition MineshaftPiece.h:17
Definition MineshaftRoom.h:17
static MCAPI void ** $vftable()
Definition Random.h:10
Definition StructurePiece.h:18