LeviLamina
Loading...
Searching...
No Matches
Parameter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ClimateUtils {
6
7struct Parameter {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 8, int64> mMin;
12 ::ll::TypedStorage<8, 8, int64> mMax;
13 // NOLINTEND
14
15public:
16 // member functions
17 // NOLINTBEGIN
18 MCAPI Parameter(float min, float max);
19
20 MCAPI Parameter(int64 const& min, int64 const& max);
21 // NOLINTEND
22
23public:
24 // constructor thunks
25 // NOLINTBEGIN
26 MCAPI void* $ctor(float min, float max);
27
28 MCAPI void* $ctor(int64 const& min, int64 const& max);
29 // NOLINTEND
30};
31
32} // namespace ClimateUtils
Definition Parameter.h:7