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