LeviLamina
Loading...
Searching...
No Matches
MineshaftStart.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 ChunkPos;
12class Dimension;
14class Random;
15// clang-format on
16
17class MineshaftStart : public ::StructureStart {
18public:
19 // prevent constructor by default
20 MineshaftStart();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ~MineshaftStart() /*override*/ = default;
26
27 virtual ::std::string_view getStructureName() const /*override*/;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI MineshaftStart(
34 ::Dimension const& dimension,
35 ::BiomeSource const& biomeSource,
36 ::Random& random,
37 ::ChunkPos const& pos,
38 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
39 );
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(
46 ::Dimension const& dimension,
47 ::BiomeSource const& biomeSource,
48 ::Random& random,
49 ::ChunkPos const& pos,
50 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
51 );
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI ::std::string_view $getStructureName() const;
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition BiomeSource.h:20
Definition ChunkPos.h:11
Definition Dimension.h:85
Definition IPreliminarySurfaceProvider.h:8
static MCAPI void ** $vftable()
Definition Random.h:10
Definition StructureStart.h:15