ld33_umonster

view src/light.h @ 10:1b30bd381667

sweep curve mesh gen and dragon horns
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 27 Aug 2015 05:25:04 +0300
parents
children
line source
1 #ifndef LIGHT_H_
2 #define LIGHT_H_
4 #include "vmath/vmath.h"
6 class Light {
7 public:
8 Vector3 pos;
9 Vector3 color;
11 Light();
13 void setup(int idx = 0) const;
14 };
16 #endif // LIGHT_H_