LeviLamina
Loading...
Searching...
No Matches
ShipwreckPiece.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/Rotation.h"
7#include "mc/world/level/levelgen/structure/StructurePiece.h"
8#include "mc/world/level/levelgen/structure/StructurePieceType.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockPos;
13class BlockSource;
14class BoundingBox;
15class Random;
16// clang-format on
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 2
23 virtual ::StructurePieceType getType() const /*override*/;
24
25 // vIndex: 4
26 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
27
28 // vIndex: 0
29 virtual ~ShipwreckPiece() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // static functions
34 // NOLINTBEGIN
35 MCNAPI static ::BlockPos
36 _calculateTargetPos(::BlockSource& region, ::BlockPos origin, ::Rotation rot, ::BlockPos size);
37
38 MCNAPI static ::BlockPos
39 _calculateTargetPosLegacy(::BlockSource& region, ::BlockPos origin, ::Rotation rot, ::BlockPos size);
40 // NOLINTEND
41
42public:
43 // static variables
44 // NOLINTBEGIN
45 MCNAPI static ::std::add_lvalue_reference_t<::std::string const[]> STRUCTURE_SHIPWRECK_TYPES();
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI ::StructurePieceType $getType() const;
52
53 MCNAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition BoundingBox.h:13
Definition Random.h:11
Definition ShipwreckPiece.h:18
MCAPI::StructurePieceType $getType() const
static MCAPI ::BlockPos _calculateTargetPos(::BlockSource &region, ::BlockPos origin, ::Rotation rot, ::BlockPos size)
static MCAPI void ** $vftable()
static MCAPI ::std::add_lvalue_reference_t<::std::string const[]> STRUCTURE_SHIPWRECK_TYPES()
static MCAPI ::BlockPos _calculateTargetPosLegacy(::BlockSource &region, ::BlockPos origin, ::Rotation rot, ::BlockPos size)
MCAPI bool $postProcess(::BlockSource &region, ::Random &random, ::BoundingBox const &chunkBB)
Definition StructurePiece.h:18