dbf-halloween2015
annotate src/light.h @ 1:c3f5c32cb210
barfed all the libraries in the source tree to make porting easier
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 01 Nov 2015 00:36:56 +0200 |
parents | |
children |
rev | line source |
---|---|
nuclear@0 | 1 #ifndef LIGHT_H_ |
nuclear@0 | 2 #define LIGHT_H_ |
nuclear@0 | 3 |
nuclear@0 | 4 #include "vmath/vmath.h" |
nuclear@0 | 5 |
nuclear@0 | 6 class Light { |
nuclear@0 | 7 public: |
nuclear@0 | 8 Vector3 pos; |
nuclear@0 | 9 Vector3 color; |
nuclear@0 | 10 |
nuclear@0 | 11 Light(); |
nuclear@0 | 12 |
nuclear@0 | 13 void setup(int idx = 0) const; |
nuclear@0 | 14 }; |
nuclear@0 | 15 |
nuclear@0 | 16 #endif // LIGHT_H_ |