LeviLamina
Loading...
Searching...
No Matches
ShipwreckStart.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/StructureStart.h"
7
8// auto generated forward declare list
9// clang-format off
10class BiomeSource;
11class Random;
12// clang-format on
13
14class ShipwreckStart : public ::StructureStart {
15public:
16 // prevent constructor by default
17 ShipwreckStart();
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual ::std::string_view getStructureName() const /*override*/;
23
24 virtual ~ShipwreckStart() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI ShipwreckStart(::BiomeSource const& source, ::Random&, int x, int z, short seaLevel);
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void* $ctor(::BiomeSource const& source, ::Random&, int x, int z, short seaLevel);
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCAPI ::std::string_view $getStructureName() const;
43
44
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
Definition BiomeSource.h:20
Definition Random.h:10
static MCAPI void ** $vftable()
Definition StructureStart.h:15