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