blob: 1a764b5de3ca124791a77058f1e96fc0fafe688f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef JSGAMBIENTLIGHT_H
#define JSGAMBIENTLIGHT_H
#include "JSystem/JStage/JSGObject.h"
#include "dolphin/gx/GXStruct.h"
namespace JStage {
/**
* @ingroup jsystem-jstage
*
*/
struct TAmbientLight : public TObject {
/* 80280B20 */ virtual ~TAmbientLight() = 0;
/* 80280B80 */ virtual s32 JSGFGetType() const;
/* 80280B88 */ virtual GXColor JSGGetColor() const;
/* 80280B9C */ virtual void JSGSetColor(GXColor);
};
};
#endif /* JSGAMBIENTLIGHT_H */
|