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