absence_thelab

diff src/dungeonpart.h @ 0:1cffe3409164

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 23 Oct 2014 01:46:07 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/dungeonpart.h	Thu Oct 23 01:46:07 2014 +0300
     1.3 @@ -0,0 +1,32 @@
     1.4 +#ifndef _DUNGEONPART_H_
     1.5 +#define _DUNGEONPART_H_
     1.6 +
     1.7 +#include "demosystem/demosys.h"
     1.8 +
     1.9 +#define FLAME_TEXTURES 52
    1.10 +
    1.11 +class DungeonPart : public Part {
    1.12 +private:
    1.13 +	//Scene *scene;
    1.14 +	Texture *FlameTex[FLAME_TEXTURES];
    1.15 +
    1.16 +	Curve *CamPath[4], *TargPath[2];
    1.17 +	Camera *cam[4];
    1.18 +
    1.19 +	Object *Flame[16], *LavaCrust, *ShadowObj[2], *LightRays;
    1.20 +	Object *Floor[3], *Obj, *mobj, *Crystals[5];
    1.21 +
    1.22 +	Object *Name, *Fade;
    1.23 +	Texture *NameTex[8];
    1.24 +
    1.25 +	dword CamTimeSeg[3][2];
    1.26 +
    1.27 +public:
    1.28 +
    1.29 +	DungeonPart(GraphicsContext *gc);
    1.30 +	~DungeonPart();
    1.31 +
    1.32 +	virtual void MainLoop();
    1.33 +};
    1.34 +
    1.35 +#endif	// _DUNGEONPART_H_
    1.36 \ No newline at end of file