absence_thelab

view src/tunnelpart.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 _TUNNELPART_H_
2 #define _TUNNELPART_H_
4 #include "demosystem/demosys.h"
6 class TunnelPart : public Part {
7 private:
8 Curve *CamPath, *TargPath;
9 Camera *cam;
11 public:
13 TunnelPart(GraphicsContext *gc);
14 ~TunnelPart();
16 void MainLoop();
17 };
19 #endif // _TUNNELPART_H_