summaryrefslogtreecommitdiff
path: root/engine/bulletpattern.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-05-23 19:54:25 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-05-23 19:54:25 +0200
commit9e9140cdf95845c580ba084342033094e928c6e8 (patch)
treee0fd74aba5c1f1e7b17c702a25e6d08201933da3 /engine/bulletpattern.h
parent9b9f94e2dcc8c850aaea4cfe0f2f7745669804ea (diff)
Moved BulletPattern1 and BulletPattern2.
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