LeviLamina
Loading...
Searching...
No Matches
ClimateParameters.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/biome/climate_utils/Parameter.h"
7
8// auto generated forward declare list
9// clang-format off
10struct TargetPoint;
11// clang-format on
12
13struct ClimateParameters {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 16, ::ClimateUtils::Parameter> mTemperature;
18 ::ll::TypedStorage<8, 16, ::ClimateUtils::Parameter> mHumidity;
19 ::ll::TypedStorage<8, 16, ::ClimateUtils::Parameter> mContinentalness;
20 ::ll::TypedStorage<8, 16, ::ClimateUtils::Parameter> mErosion;
21 ::ll::TypedStorage<8, 16, ::ClimateUtils::Parameter> mDepth;
22 ::ll::TypedStorage<8, 16, ::ClimateUtils::Parameter> mWeirdness;
23 ::ll::TypedStorage<8, 8, int64> mOffset;
24 ::ll::TypedStorage<8, 112, ::std::array<::ClimateUtils::Parameter, 7>> mParameterSpace;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ClimateParameters();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI ClimateParameters(
35 ::ClimateUtils::Parameter temperature,
37 ::ClimateUtils::Parameter continentalness,
41 float offset
42 );
43
44 MCAPI int64 fitness(::TargetPoint const& other) const;
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(
51 ::ClimateUtils::Parameter temperature,
53 ::ClimateUtils::Parameter continentalness,
57 float offset
58 );
59 // NOLINTEND
60};
Definition Parameter.h:7
Definition TargetPoint.h:8