blob: 5007906a5964eb66f9c05f6468a407594ff8fe02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef JSGAMBIENTLIGHT_H
#define JSGAMBIENTLIGHT_H
#include "JSystem/JStage/JSGObject.h"
#include "dolphin/gx/GXStruct.h"
namespace JStage {
struct TAmbientLight : public TObject {
virtual ~TAmbientLight() = 0;
virtual s32 JSGFGetType() const;
virtual GXColor JSGGetColor() const;
virtual void JSGSetColor(GXColor);
};
};
#endif /* JSGAMBIENTLIGHT_H */
|