summaryrefslogtreecommitdiff
path: root/bulletpattern.h
diff options
context:
space:
mode:
Diffstat (limited to 'bulletpattern.h')
-rw-r--r--bulletpattern.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/bulletpattern.h b/bulletpattern.h
new file mode 100644
index 0000000..50d5844
--- /dev/null
+++ b/bulletpattern.h
@@ -0,0 +1,14 @@
+#ifndef BULLETPATTERN_H
+#define BULLETPATTERN_H
+
+class BulletPattern {
+ protected:
+ float* bullets;
+ int num_bullets;
+ public:
+ BulletPattern();
+ void update(unsigned int time, unsigned int step);
+ void draw();
+};
+
+#endif