absence_thelab

view src/greetspart.h @ 0:1cffe3409164

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 23 Oct 2014 01:46:07 +0300
parents
children
line source
1 #ifndef _GREETSPART_H_
2 #define _GREETSPART_H_
4 #include "demosystem/demosys.h"
6 class GreetsPart : public Part {
7 private:
8 Camera *cam;
9 Object *Parchment, *Scroll1, *Scroll2;
10 Texture *FlameTex[52];
11 Object *flame, *Bottle;
13 Light *light;
14 Vector3 LightPos;
17 public:
18 GreetsPart(GraphicsContext *gc);
19 ~GreetsPart();
21 void MainLoop();
22 };
24 #endif // _GREETSPART_H_