LeviLamina
Loading...
Searching...
No Matches
MineshaftCrossing.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/MineshaftPiece.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
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 MineshaftCrossing& operator=(MineshaftCrossing const&);
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 2
35 virtual ::StructurePieceType getType() const /*override*/;
36
37 // vIndex: 3
38 virtual void addChildren(
39 ::StructurePiece& startPiece,
40 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
41 ::Random& random
42 ) /*override*/;
43
44 // vIndex: 4
45 virtual bool postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB) /*override*/;
46
47 // vIndex: 0
48 virtual ~MineshaftCrossing() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI void _placeSupportPillar(::BlockSource& region, ::BoundingBox const& chunkBB, int x, int y0, int z, int y1);
55 // NOLINTEND
56
57public:
58 // static functions
59 // NOLINTBEGIN
60 MCAPI static ::BoundingBox findCrossing(
61 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
62 ::Random& random,
63 int footX,
64 int footY,
65 int footZ,
66 int direction
67 );
68 // NOLINTEND
69
70public:
71 // destructor thunk
72 // NOLINTBEGIN
73
74 // NOLINTEND
75
76public:
77 // virtual function thunks
78 // NOLINTBEGIN
79 MCAPI ::StructurePieceType $getType() const;
80
81 MCAPI void $addChildren(
82 ::StructurePiece& startPiece,
83 ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces,
84 ::Random& random
85 );
86
87 MCAPI bool $postProcess(::BlockSource& region, ::Random&, ::BoundingBox const& chunkBB);
88 // NOLINTEND
89
90public:
91 // vftables
92 // NOLINTBEGIN
93 MCAPI static void** $vftable();
94 // NOLINTEND
95};
Definition BlockSource.h:67
Definition BoundingBox.h:18
Definition MineshaftCrossing.h:17
Definition MineshaftPiece.h:17
Definition Random.h:16
Definition StructurePiece.h:18
Definition Alias.h:14