LeviLamina
Loading...
Searching...
No Matches
FogDistanceSetting.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Color.h"
7
9public:
10 // FogDistanceSetting inner types define
11 enum class DistanceType : int {
12 Fixed = 0,
13 Render = 1,
14 };
15
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 16, ::mce::Color> mColor;
20 ::ll::TypedStorage<4, 4, float> mStart;
21 ::ll::TypedStorage<4, 4, float> mEnd;
22 ::ll::TypedStorage<4, 4, ::FogDistanceSetting::DistanceType> mType;
23 // NOLINTEND
24
25public:
26 // static variables
27 // NOLINTBEGIN
28 MCAPI static ::FogDistanceSetting const& ZERO_SETTING();
29 // NOLINTEND
30};
Definition FogDistanceSetting.h:5