summaryrefslogtreecommitdiffhomepage
path: root/EnemyFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'EnemyFactory.h')
-rw-r--r--EnemyFactory.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/EnemyFactory.h b/EnemyFactory.h
index 6134ae9..934b0ea 100644
--- a/EnemyFactory.h
+++ b/EnemyFactory.h
@@ -6,6 +6,7 @@
struct EnemyFactory
{
- static Enemy make_example(ConstantVelocityBullet::Vector& bullets, float x, float y, float hold, bool mirror=false);
- static Enemy make_waver(ConstantVelocityBullet::Vector& bullets, float x, float y, float hold);
+ static Enemy make_small(ConstantVelocityBullet::Vector& bullets, float x, float y, float hold, bool mirror=false);
+ static Enemy make_thick(ConstantVelocityBullet::Vector& bullets, float x, float y, float hold, float angle=0.5f);
+ static Enemy make_rotator(ConstantVelocityBullet::Vector& bullets, float x, float y, float hold, bool mirror=false);
};