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
16class ScatteredFeatureStart : public ::StructureStart {
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
29 ::ll::TypedStorage<4, 4, ::RandomScatteredLargeFeatureDetails::ScatteredFeatureStart::Type> type;
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 ScatteredFeatureStart();
35
36public:
37 // virtual functions
38 // NOLINTBEGIN
39 virtual int getMaxYSpawnOffset() const /*override*/;
40
41 virtual ::std::string_view getStructureName() const /*override*/;
42
43 virtual ~ScatteredFeatureStart() /*override*/ = default;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCAPI ScatteredFeatureStart(
50 ::BiomeSource const& source,
51 short seaLevel,
52 int chunkX,
53 int chunkZ,
54 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
55 );
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCAPI void* $ctor(
62 ::BiomeSource const& source,
63 short seaLevel,
64 int chunkX,
65 int chunkZ,
66 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
67 );
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCAPI int $getMaxYSpawnOffset() const;
74
75 MCAPI ::std::string_view $getStructureName() const;
76
77
78 // NOLINTEND
79
80public:
81 // vftables
82 // NOLINTBEGIN
83 MCNAPI static void** $vftable();
84 // NOLINTEND
85};
86
87} // namespace RandomScatteredLargeFeatureDetails
Definition BiomeSource.h:23
Definition IPreliminarySurfaceProvider.h:8
Definition Igloo.h:19
Definition StructureStart.h:15
Definition SwamplandHut.h:17