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 virtual ::StructurePieceType getType() const /*override*/;
28
29 virtual void addChildren(
30 ::StructurePiece& startPiece,
31 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
32 ::Random& random
33 ) /*override*/;
34
35 virtual bool postProcess(::BlockSource& region, ::Random& chunkBB, ::BoundingBox const&) /*override*/;
36
37 virtual void moveBoundingBox(int dx, int dy, int dz) /*override*/;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI ::StructurePieceType $getType() const;
44
45 MCAPI void $addChildren(
46 ::StructurePiece& startPiece,
47 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
48 ::Random& random
49 );
50
51 MCAPI bool $postProcess(::BlockSource& region, ::Random& chunkBB, ::BoundingBox const&);
52
53 MCAPI void $moveBoundingBox(int dx, int dy, int dz);
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BlockSource.h:73
Definition BoundingBox.h:13
Definition MineshaftPiece.h:16
Definition MineshaftRoom.h:17
static MCAPI void ** $vftable()
Definition Random.h:10
Definition StructurePiece.h:21