From 267bebfc227c94f543a39e2aa75fb101bc06932e Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Fri, 21 May 2010 19:24:51 +0200 Subject: Moved engine-sources to seperate subdirectory. --- engine/bulletpattern.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 engine/bulletpattern.h (limited to 'engine/bulletpattern.h') diff --git a/engine/bulletpattern.h b/engine/bulletpattern.h new file mode 100644 index 0000000..092713e --- /dev/null +++ b/engine/bulletpattern.h @@ -0,0 +1,17 @@ +#ifndef BULLETPATTERN_H +#define BULLETPATTERN_H + +class BulletPattern { + protected: + float* bullets; + int num_bullets; + int stride; + public: + float color_r, color_g, color_b; + + BulletPattern(); + virtual void update(unsigned int time, unsigned int step); + void draw(); +}; + +#endif -- cgit v1.2.3