dbf-halloween2015
annotate src/light.h @ 4:4316c0c879e9
fixed RUN script for macosx
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 01 Nov 2015 06:18:18 +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_ |