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