LeviLamina
Loading...
Searching...
No Matches
NetherFortressFeature.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 BaseGameVersion;
11class BiomeSource;
12class ChunkPos;
13class Dimension;
15class Random;
16class StructureStart;
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 1
36 virtual bool shouldAddHardcodedSpawnAreas() const /*override*/;
37
38 // vIndex: 4
39 virtual bool isFeatureChunk(
40 ::BiomeSource const& biomeSource,
41 ::Random& random,
42 ::ChunkPos const& chunkPos,
43 uint levelSeed,
44 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
45 ::Dimension const& dimension
46 ) /*override*/;
47
48 // vIndex: 5
49 virtual ::std::unique_ptr<::StructureStart> createStructureStart(
50 ::Dimension& generator,
51 ::BiomeSource const& biomeSource,
52 ::Random& random,
53 ::ChunkPos const& cp,
54 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
55 ) /*override*/;
56
57 // vIndex: 0
58 virtual ~NetherFortressFeature() /*override*/ = default;
59 // NOLINTEND
60
61public:
62 // member functions
63 // NOLINTBEGIN
64 MCAPI NetherFortressFeature(uint& seed, ::BaseGameVersion const& baseGameVersion);
65 // NOLINTEND
66
67public:
68 // constructor thunks
69 // NOLINTBEGIN
70 MCAPI void* $ctor(uint& seed, ::BaseGameVersion const& baseGameVersion);
71 // NOLINTEND
72
73public:
74 // destructor thunk
75 // NOLINTBEGIN
76
77 // NOLINTEND
78
79public:
80 // virtual function thunks
81 // NOLINTBEGIN
82 MCFOLD bool $shouldAddHardcodedSpawnAreas() const;
83
84 MCAPI bool $isFeatureChunk(
85 ::BiomeSource const& biomeSource,
86 ::Random& random,
87 ::ChunkPos const& chunkPos,
88 uint levelSeed,
89 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
90 ::Dimension const& dimension
91 );
92
93 MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart(
94 ::Dimension& generator,
95 ::BiomeSource const& biomeSource,
96 ::Random& random,
97 ::ChunkPos const& cp,
98 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
99 );
100 // NOLINTEND
101
102public:
103 // vftables
104 // NOLINTBEGIN
105 MCAPI static void** $vftable();
106 // NOLINTEND
107};
Definition BaseGameVersion.h:13
Definition BiomeSource.h:16
Definition ChunkPos.h:11
Definition Dimension.h:83
Definition IPreliminarySurfaceProvider.h:8
Definition NetherFortressFeature.h:19
Definition Random.h:16
Definition StructureFeature.h:23
Definition StructureStart.h:13
Definition Alias.h:14