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