blob: e7954c8cf38ce96880bf6394ee9c5e57d3d6a460 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "JSystem/JSystem.h" // IWYU pragma: keep
#include "JSystem/JStage/JSGAmbientLight.h"
JStage::TAmbientLight::~TAmbientLight() {}
s32 JStage::TAmbientLight::JSGFGetType() const {
return 4;
}
GXColor JStage::TAmbientLight::JSGGetColor() const {
return (GXColor){255, 255, 255, 255};
}
void JStage::TAmbientLight::JSGSetColor(GXColor) {}
|