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 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI ScatteredFeatureStart(
48 ::BiomeSource const& source,
49 short seaLevel,
50 int chunkX,
51 int chunkZ,
52 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
53 );
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCAPI void* $ctor(
60 ::BiomeSource const& source,
61 short seaLevel,
62 int chunkX,
63 int chunkZ,
64 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
65 );
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCAPI int $getMaxYSpawnOffset() const;
72
73 MCAPI ::std::string_view $getStructureName() const;
74
75
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCNAPI static void** $vftable();
82 // NOLINTEND
83};
84
85} // namespace RandomScatteredLargeFeatureDetails
Definition BiomeSource.h:24
Definition IPreliminarySurfaceProvider.h:8
Definition Igloo.h:19
Definition StructureStart.h:15
Definition SwamplandHut.h:17