summaryrefslogtreecommitdiff
path: root/engine/bulletpattern.h
diff options
context:
space:
mode:
Diffstat (limited to 'engine/bulletpattern.h')
-rw-r--r--engine/bulletpattern.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/engine/bulletpattern.h b/engine/bulletpattern.h
index 9acda5f..e1dd3a2 100644
--- a/engine/bulletpattern.h
+++ b/engine/bulletpattern.h
@@ -15,4 +15,16 @@ class BulletPattern {
void draw();
};
+class BulletPattern1 : public BulletPattern {
+ public:
+ BulletPattern1();
+ void update();
+};
+
+class BulletPattern2 : public BulletPattern {
+ public:
+ BulletPattern2(float xpos, float ypos);
+ void update();
+};
+
#endif