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 MCAPI 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 // destructor thunk
69 // NOLINTBEGIN
70
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCAPI ::StructurePieceType $getType() const;
77
78 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
79
80 MCAPI void $addChildren(
81 ::StructurePiece& startPiece,
82 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
83 ::Random& random
84 );
85 // NOLINTEND
86
87public:
88 // vftables
89 // NOLINTBEGIN
90 MCAPI static void** $vftable();
91 // NOLINTEND
92};
Definition BlockSource.h:67
Definition BoundingBox.h:18
Definition Random.h:16
Definition SHFiveCrossing.h:17
Definition StrongholdPiece.h:16
Definition StructurePiece.h:18
Definition Alias.h:14