LeviLamina
Loading...
Searching...
No Matches
MineshaftFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/StructureFeature.h"
7
8// auto generated forward declare list
9// clang-format off
10class BiomeSource;
11class ChunkPos;
12class Dimension;
14class Random;
15class StructureStart;
16// clang-format on
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~MineshaftFeature() /*override*/ = default;
24
25 // vIndex: 4
26 virtual bool isFeatureChunk(
27 ::BiomeSource const& biomeSource,
28 ::Random& random,
29 ::ChunkPos const& pos,
30 uint levelSeed,
31 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
32 ::Dimension const& dimension
33 ) /*override*/;
34
35 // vIndex: 2
36 virtual bool shouldPostProcessMobs() const /*override*/;
37
38 // vIndex: 5
39 virtual ::std::unique_ptr<::StructureStart> createStructureStart(
40 ::Dimension& generator,
41 ::BiomeSource const& biomeSource,
42 ::Random& random,
43 ::ChunkPos const& lc,
44 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
45 ) /*override*/;
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI bool $isFeatureChunk(
52 ::BiomeSource const& biomeSource,
53 ::Random& random,
54 ::ChunkPos const& pos,
55 uint levelSeed,
56 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
57 ::Dimension const& dimension
58 );
59
60 MCNAPI bool $shouldPostProcessMobs() const;
61
62 MCNAPI ::std::unique_ptr<::StructureStart> $createStructureStart(
63 ::Dimension& generator,
64 ::BiomeSource const& biomeSource,
65 ::Random& random,
66 ::ChunkPos const& lc,
67 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
68 );
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition BiomeSource.h:19
Definition ChunkPos.h:11
Definition Dimension.h:83
Definition IPreliminarySurfaceProvider.h:8
Definition MineshaftFeature.h:18
MCAPI bool $shouldPostProcessMobs() const
MCAPI ::std::unique_ptr<::StructureStart > $createStructureStart(::Dimension &generator, ::BiomeSource const &biomeSource, ::Random &random, ::ChunkPos const &lc, ::IPreliminarySurfaceProvider const &preliminarySurfaceLevel)
static MCAPI void ** $vftable()
MCAPI bool $isFeatureChunk(::BiomeSource const &biomeSource, ::Random &random, ::ChunkPos const &pos, uint levelSeed, ::IPreliminarySurfaceProvider const &preliminarySurfaceLevel, ::Dimension const &dimension)
Definition Random.h:11
Definition StructureFeature.h:23
Definition StructureStart.h:15