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