absence_thelab

view src/beginpart.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 _BEGINPART_H_
2 #define _BEGINPART_H_
4 #include "demosystem/demosys.h"
6 class BeginPart : public Part {
7 private:
8 //Scene *scene;
10 Object *Logo1, *Logo2, *Latin1, *Latin2, *Lines[2], *TheLabText[2], *VolumeLogo;
11 DirLight *light;
12 Camera *cam;
14 public:
16 BeginPart(GraphicsContext *gc);
17 ~BeginPart();
19 void MainLoop();
20 };
23 #endif // _BEGINPART_H_