absence_thelab

view src/treepart.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 _TREEPART_H_
2 #define _TREEPART_H_
4 #include "demosystem/demosys.h"
5 #include "3deng/particles.h"
7 class TreePart : public Part {
8 private:
9 //Scene *scene;
10 ParticleSystem *leaves, *WispParticles[4];
11 Texture *WispParticle, *LeavesParticle;
12 Camera *cam, *dummy[3];
13 Curve *CamPath, *TargPath, *WispPath[3];
14 Light *lights[4];
16 Object *Trees, *Moon, *Stars;
17 public:
19 TreePart(GraphicsContext *gc);
20 ~TreePart();
22 void MainLoop();
23 };
25 #endif // _TREEPART_H_