absence_thelab

view src/hellpart.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 _HELLPART_H_
2 #define _HELLPART_H_
4 #include "demosystem/demosys.h"
6 class HellPart : public Part {
7 private:
8 Curve *CamPath;
9 Camera *cam, *cam2, *cam3;
10 Object *Stones[5];
11 Object *Rings[5];
12 Light *Thunder;
13 Object *ThundEnv[5];
14 Object *Credits;
15 Object *Blood, *Grail;
16 Texture *dbgtex;
17 Texture *CredNuc[7];
18 Texture *CredAmi[7];
19 Texture *CredRaw[7];
20 Texture *CredAmv[7];
24 public:
25 HellPart(GraphicsContext *gc);
26 ~HellPart();
28 void MainLoop();
29 };
31 #endif // _HELLPART_H_