LeviLamina
Loading...
Searching...
No Matches
NBCastleSmallCorridorLeftTurnPiece.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/NetherFortressPiece.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
17class NBCastleSmallCorridorLeftTurnPiece : public ::NetherFortressPiece {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 1, bool> shouldPlaceChest;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::StructurePieceType getType() const /*override*/;
28
29 virtual void addChildren(
30 ::StructurePiece& startPiece,
31 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
32 ::Random& random
33 ) /*override*/;
34
35 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCAPI static ::std::unique_ptr<::NetherFortressPiece> 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 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI ::StructurePieceType $getType() const;
56
57 MCAPI void $addChildren(
58 ::StructurePiece& startPiece,
59 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
60 ::Random& random
61 );
62
63 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
64
65
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition BlockSource.h:73
Definition BoundingBox.h:13
Definition NBCastleSmallCorridorLeftTurnPiece.h:17
static MCAPI void ** $vftable()
Definition Random.h:10
Definition StructurePiece.h:21