blob: e9b4506d0820b2b87a3cf188b9cb99f75eea112e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include "JSystem/JSystem.h" // IWYU pragma: keep
#include "JSystem/JStage/JSGFog.h"
#include "math.h"
JStage::TFog::~TFog() {}
s32 JStage::TFog::JSGFGetType() const {
return 6;
}
bool JStage::TFog::JSGGetFogFunction() const {
return false;
}
void JStage::TFog::JSGSetFogFunction(GXFogType) {}
f32 JStage::TFog::JSGGetStartZ() const {
return 0.0f;
}
void JStage::TFog::JSGSetStartZ(f32) {}
f32 JStage::TFog::JSGGetEndZ() const {
return FLT_MAX;
}
void JStage::TFog::JSGSetEndZ(f32) {}
GXColor JStage::TFog::JSGGetColor() const {
return (GXColor){255, 255, 255, 255};
}
void JStage::TFog::JSGSetColor(GXColor) {}
|