summaryrefslogtreecommitdiffhomepage
path: root/EnemyFactory.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-25 01:49:48 +0200
committerAki <please@ignore.pl>2022-04-25 01:49:48 +0200
commitc1c7fb82aed0c403865896a941388a9e2cc486d0 (patch)
tree7407e44a90d394bd285d5a02841188ed219a3267 /EnemyFactory.h
parent63c64254a80564e11987ba4af289cf8d47774668 (diff)
downloadbullethell2022-c1c7fb82aed0c403865896a941388a9e2cc486d0.zip
bullethell2022-c1c7fb82aed0c403865896a941388a9e2cc486d0.tar.gz
bullethell2022-c1c7fb82aed0c403865896a941388a9e2cc486d0.tar.bz2
Extended test staged with new enemies
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);
};