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