LeviLamina
Loading...
Searching...
No Matches
SHFillerCorridor.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
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 SHFillerCorridor& operator=(SHFillerCorridor const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 2
34 virtual ::StructurePieceType getType() const /*override*/;
35
36 // vIndex: 4
37 virtual bool postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB) /*override*/;
38
39 // vIndex: 0
40 virtual ~SHFillerCorridor() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCNAPI static ::BoundingBox findPieceBox(
47 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
48 ::Random&,
49 int footX,
50 int footY,
51 int footZ,
52 int direction
53 );
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCNAPI ::StructurePieceType $getType() const;
60
61 MCNAPI bool $postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB);
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition BlockSource.h:67
Definition BoundingBox.h:13
Definition Random.h:11
Definition SHFillerCorridor.h:17
MCAPI bool $postProcess(::BlockSource &region, ::Random &, ::BoundingBox const &chunkBB)
MCAPI::StructurePieceType $getType() const
static MCAPI void ** $vftable()
static MCAPI ::BoundingBox findPieceBox(::std::vector<::std::unique_ptr<::StructurePiece > > &pieces, ::Random &, int footX, int footY, int footZ, int direction)
Definition StrongholdPiece.h:16
Definition StructurePiece.h:18
Definition Alias.h:14