LeviLamina
Loading...
Searching...
No Matches
AncientCityFeature.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 BlockPos;
12class ChunkPos;
13class Dimension;
14class HashedString;
16class Random;
17class StructureStart;
18// clang-format on
19
21public:
22 // member variables
23 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 AncientCityFeature& operator=(AncientCityFeature const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 4
37 virtual bool
38 isFeatureChunk(::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& chunkPos, uint levelSeed, ::IPreliminarySurfaceProvider const&, ::Dimension const&) /*override*/
39 ;
40
41 // vIndex: 3
42 virtual bool getNearestGeneratedFeature(
43 ::Dimension& dimension,
44 ::BiomeSource const& biomeSource,
45 ::BlockPos const& origin,
46 ::BlockPos& pos,
47 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
48 bool mustBeInNewChunks,
49 ::std::optional<::HashedString> const& biomeTag
50 ) /*override*/;
51
52 // vIndex: 5
53 virtual ::std::unique_ptr<::StructureStart>
54 createStructureStart(::Dimension& dimension, ::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& chunkPos, ::IPreliminarySurfaceProvider const&) /*override*/
55 ;
56
57 // vIndex: 0
58 virtual ~AncientCityFeature() /*override*/ = default;
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCAPI bool
71 $isFeatureChunk(::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& chunkPos, uint levelSeed, ::IPreliminarySurfaceProvider const&, ::Dimension const&);
72
73 MCAPI bool $getNearestGeneratedFeature(
74 ::Dimension& dimension,
75 ::BiomeSource const& biomeSource,
76 ::BlockPos const& origin,
77 ::BlockPos& pos,
78 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
79 bool mustBeInNewChunks,
80 ::std::optional<::HashedString> const& biomeTag
81 );
82
83 MCAPI ::std::unique_ptr<::StructureStart>
84 $createStructureStart(::Dimension& dimension, ::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& chunkPos, ::IPreliminarySurfaceProvider const&);
85 // NOLINTEND
86
87public:
88 // vftables
89 // NOLINTBEGIN
90 MCAPI static void** $vftable();
91 // NOLINTEND
92};
Definition AncientCityFeature.h:20
Definition BiomeSource.h:16
Definition BlockPos.h:18
Definition ChunkPos.h:11
Definition Dimension.h:83
Definition HashedString.h:5
Definition IPreliminarySurfaceProvider.h:8
Definition Random.h:16
Definition StructureFeature.h:23
Definition StructureStart.h:13
Definition Alias.h:14