absence_thelab

diff src/demonpart.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/demonpart.h	Thu Oct 23 01:46:07 2014 +0300
     1.3 @@ -0,0 +1,18 @@
     1.4 +#ifndef _DEMONPART_H_
     1.5 +#define _DEMONPART_H_
     1.6 +
     1.7 +#include "demosystem/demosys.h"
     1.8 +
     1.9 +class DemonPart : public Part {
    1.10 +private:
    1.11 +	Camera *cam;
    1.12 +	Curve *curve;
    1.13 +
    1.14 +public:
    1.15 +	DemonPart(GraphicsContext *gc);
    1.16 +	~DemonPart();
    1.17 +
    1.18 +	void MainLoop();
    1.19 +};
    1.20 +
    1.21 +#endif	// _DEMONPART_H_
    1.22 \ No newline at end of file