LeviLamina
Loading...
Searching...
No Matches
ScatteredFeatureStart.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;
12// clang-format on
13
14namespace RandomScatteredLargeFeatureDetails {
15
17public:
18 // ScatteredFeatureStart inner types define
19 enum class Type : int {
20 JunglePyramid = 0,
21 SwamplandHut = 1,
22 DesertPyramid = 2,
23 Igloo = 3,
24 };
25
26public:
27 // member variables
28 // NOLINTBEGIN
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 // vIndex: 3
42 virtual int getMaxYSpawnOffset() const /*override*/;
43
44 // vIndex: 4
45 virtual ::std::string_view getStructureName() const /*override*/;
46
47 // vIndex: 0
48 virtual ~ScatteredFeatureStart() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
55 ::BiomeSource const& source,
56 short seaLevel,
57 int chunkX,
58 int chunkZ,
59 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
60 );
61 // NOLINTEND
62
63public:
64 // constructor thunks
65 // NOLINTBEGIN
66 MCNAPI void* $ctor(
67 ::BiomeSource const& source,
68 short seaLevel,
69 int chunkX,
70 int chunkZ,
71 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
72 );
73 // NOLINTEND
74
75public:
76 // virtual function thunks
77 // NOLINTBEGIN
78 MCNAPI int $getMaxYSpawnOffset() const;
79
80 MCNAPI ::std::string_view $getStructureName() const;
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCNAPI static void** $vftable();
87 // NOLINTEND
88};
89
90} // namespace RandomScatteredLargeFeatureDetails
Definition BiomeSource.h:19
Definition IPreliminarySurfaceProvider.h:8
Definition Igloo.h:16
MCAPI ScatteredFeatureStart(::BiomeSource const &source, short seaLevel, int chunkX, int chunkZ, ::IPreliminarySurfaceProvider const &preliminarySurfaceLevel)
MCAPI void * $ctor(::BiomeSource const &source, short seaLevel, int chunkX, int chunkZ, ::IPreliminarySurfaceProvider const &preliminarySurfaceLevel)
Definition StructureStart.h:15
Definition SwamplandHut.h:17
Definition Alias.h:14