summaryrefslogtreecommitdiff
path: root/MorgSimulator/Factory/IMorgFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MorgSimulator/Factory/IMorgFactory.cs')
-rw-r--r--MorgSimulator/Factory/IMorgFactory.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MorgSimulator/Factory/IMorgFactory.cs b/MorgSimulator/Factory/IMorgFactory.cs
new file mode 100644
index 0000000..60537de
--- /dev/null
+++ b/MorgSimulator/Factory/IMorgFactory.cs
@@ -0,0 +1,9 @@
+namespace MorgSimulator.Factory
+{
+ public interface IMorgFactory
+ {
+ Morg CreateMorg(int id, string type, int x, int y, string movement, string feeding);
+ IMovementStrategy CreateMovementStrategy(string movementType);
+ IFeedingStrategy CreateFeedingStrategy(string behavior);
+ }
+}