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 // destructor thunk
50 // NOLINTBEGIN
51
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI bool $isFeatureChunk(
58 ::BiomeSource const& biomeSource,
59 ::Random& random,
60 ::ChunkPos const& pos,
61 uint levelSeed,
62 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
63 ::Dimension const& dimension
64 );
65
66 MCFOLD bool $shouldPostProcessMobs() const;
67
68 MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart(
69 ::Dimension& generator,
70 ::BiomeSource const& biomeSource,
71 ::Random& random,
72 ::ChunkPos const& lc,
73 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
74 );
75 // NOLINTEND
76
77public:
78 // vftables
79 // NOLINTBEGIN
80 MCAPI static void** $vftable();
81 // NOLINTEND
82};
Definition BiomeSource.h:16
Definition ChunkPos.h:11
Definition Dimension.h:83
Definition IPreliminarySurfaceProvider.h:8
Definition MineshaftFeature.h:18
Definition Random.h:16
Definition StructureFeature.h:23
Definition StructureStart.h:13