LeviLamina
Loading...
Searching...
No Matches
NBBridgeEndFiller.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
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, int> selfSeed;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 2
28 virtual ::StructurePieceType getType() const /*override*/;
29
30 // vIndex: 4
31 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
32
33 // vIndex: 0
34 virtual ~NBBridgeEndFiller() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // static functions
39 // NOLINTBEGIN
40 MCAPI static ::std::unique_ptr<::NetherFortressPiece> createPiece(
41 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
42 ::Random& random,
43 int footX,
44 int footY,
45 int footZ,
46 int direction,
47 int genDepth
48 );
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI ::StructurePieceType $getType() const;
55
56 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
Definition BlockSource.h:66
Definition BoundingBox.h:13
Definition NBBridgeEndFiller.h:17
static MCAPI void ** $vftable()
Definition NetherFortressPiece.h:19
Definition Random.h:10
Definition StructurePiece.h:18