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, 0 insertions, 9 deletions
diff --git a/MorgSimulator/Factory/IMorgFactory.cs b/MorgSimulator/Factory/IMorgFactory.cs
deleted file mode 100644
index 60537de..0000000
--- a/MorgSimulator/Factory/IMorgFactory.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-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);
- }
-}