LeviLamina
Loading...
Searching...
No Matches
SHRoomCrossing.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/StrongholdPiece.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> type;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 2
28 virtual ::StructurePieceType getType() const /*override*/;
29
30 // vIndex: 4
31 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
32
33 // vIndex: 3
34 virtual void addChildren(
35 ::StructurePiece& startPiece,
36 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
37 ::Random& random
38 ) /*override*/;
39
40 // vIndex: 0
41 virtual ~SHRoomCrossing() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // static functions
46 // NOLINTBEGIN
47 MCAPI static ::std::unique_ptr<::StrongholdPiece> createPiece(
48 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
49 ::Random& random,
50 int footX,
51 int footY,
52 int footZ,
53 int direction,
54 int genDepth
55 );
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI ::StructurePieceType $getType() const;
62
63 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
64
65 MCAPI void $addChildren(
66 ::StructurePiece& startPiece,
67 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
68 ::Random& random
69 );
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
Definition BlockSource.h:66
Definition BoundingBox.h:13
Definition Random.h:10
Definition SHRoomCrossing.h:17
static MCAPI void ** $vftable()
Definition StrongholdPiece.h:16
Definition StructurePiece.h:18