absence_thelab

view src/demonpart.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 _DEMONPART_H_
2 #define _DEMONPART_H_
4 #include "demosystem/demosys.h"
6 class DemonPart : public Part {
7 private:
8 Camera *cam;
9 Curve *curve;
11 public:
12 DemonPart(GraphicsContext *gc);
13 ~DemonPart();
15 void MainLoop();
16 };
18 #endif // _DEMONPART_H_