summaryrefslogtreecommitdiff
path: root/engine/bulletpattern.h
diff options
context:
space:
mode:
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