LeviLamina
Loading...
Searching...
No Matches
TargetPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/biome/climate_utils/TargetSpace.h"
7
8struct TargetPoint {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 8, int64 const> mTemperature;
13 ::ll::TypedStorage<8, 8, int64 const> mHumidity;
14 ::ll::TypedStorage<8, 8, int64 const> mContinentalness;
15 ::ll::TypedStorage<8, 8, int64 const> mErosion;
16 ::ll::TypedStorage<8, 8, int64 const> mDepth;
17 ::ll::TypedStorage<8, 8, int64 const> mWeirdness;
18 ::ll::TypedStorage<8, 56, ::ClimateUtils::TargetSpace const> mTargetSpace;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI
29 TargetPoint(float temperature, float humidity, float continentalness, float erosion, float depth, float weirdness);
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCAPI void*
36 $ctor(float temperature, float humidity, float continentalness, float erosion, float depth, float weirdness);
37 // NOLINTEND
38};
Definition TargetPoint.h:8