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