summaryrefslogtreecommitdiff
path: root/engine/bulletpattern.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-05-21 19:24:51 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-05-21 19:24:51 +0200
commit267bebfc227c94f543a39e2aa75fb101bc06932e (patch)
tree40ad8057634ba80aa19c61f57884982fd59f6b56 /engine/bulletpattern.h
parent88b1e9e505dad78fd2c3ff927495d322b11491ca (diff)
Moved engine-sources to seperate subdirectory.
Diffstat (limited to 'engine/bulletpattern.h')
-rw-r--r--engine/bulletpattern.h17
1 files changed, 17 insertions, 0 deletions
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