summaryrefslogtreecommitdiffhomepage
path: root/EnemyFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'EnemyFactory.h')
-rw-r--r--EnemyFactory.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/EnemyFactory.h b/EnemyFactory.h
new file mode 100644
index 0000000..0475a25
--- /dev/null
+++ b/EnemyFactory.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "ConstantVelocity.h"
+#include "Enemy.h"
+
+
+struct EnemyFactory
+{
+ static Enemy make_example(ConstantVelocityBullet::Vector& bullets, float x, float y, float hold, bool mirror=false);
+};