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