blob: cf1a8eb2c86ccd5a644067a451f45637a2d0d8b2 (
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 <limits>
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 std::numeric_limits<f32>::max();
}
void JStage::TFog::JSGSetEndZ(f32) {}
GXColor JStage::TFog::JSGGetColor() const {
return (GXColor){255, 255, 255, 255};
}
void JStage::TFog::JSGSetColor(GXColor) {}
|