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