absence_thelab

diff src/hellpart.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/hellpart.h	Thu Oct 23 01:46:07 2014 +0300
     1.3 @@ -0,0 +1,31 @@
     1.4 +#ifndef _HELLPART_H_
     1.5 +#define _HELLPART_H_
     1.6 +
     1.7 +#include "demosystem/demosys.h"
     1.8 +
     1.9 +class HellPart : public Part {
    1.10 +private:
    1.11 +	Curve *CamPath;
    1.12 +	Camera *cam, *cam2, *cam3;
    1.13 +	Object *Stones[5];
    1.14 +	Object *Rings[5];
    1.15 +	Light *Thunder;
    1.16 +	Object *ThundEnv[5];
    1.17 +	Object *Credits;
    1.18 +	Object *Blood, *Grail;
    1.19 +	Texture *dbgtex;
    1.20 +	Texture *CredNuc[7];
    1.21 +	Texture *CredAmi[7];
    1.22 +	Texture *CredRaw[7];
    1.23 +	Texture *CredAmv[7];
    1.24 +
    1.25 +
    1.26 +
    1.27 +public:
    1.28 +	HellPart(GraphicsContext *gc);
    1.29 +	~HellPart();
    1.30 +
    1.31 +	void MainLoop();
    1.32 +};
    1.33 +
    1.34 +#endif	// _HELLPART_H_
    1.35 \ No newline at end of file