comparison include/Cerium/Light.h @ 0:04e28d8d3c6f

first commit
author Daiki KINJYO <e085722@ie.u-ryukyu.ac.jp>
date Mon, 08 Nov 2010 01:23:25 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:04e28d8d3c6f
1 #ifndef INCLUDED_LIGHT
2 #define INCLUDED_LIGHT
3 #include "SceneGraph.h"
4
5 class Light : public SceneGraph {
6 public:
7 Light(float w, float h);
8 ~Light(void);
9 };
10
11 typedef Light *LightPtr;
12
13 #endif