]> git.jsancho.org Git - lugaru.git/blob - Source/Lights.h
4c635f74b33b669453a3a3474fb753649e9f5c07
[lugaru.git] / Source / Lights.h
1 #ifndef _LIGHTS_H_
2 #define _LIGHTS_H_
3
4
5 /**> HEADER FILES <**/
6 #include "gamegl.h"
7 #include "Quaternions.h"
8
9 class Light{
10 public:
11         GLint type;
12         GLfloat color[3];
13         GLfloat ambient[3];
14         int attach;
15         XYZ location;
16 };
17
18 void SetUpMainLight(Light* whichsource, int whichlight, float ambientr, float ambientg, float ambientb);
19 void SetUpLight(Light* whichsource, int whichlight);
20
21 #endif