summaryrefslogtreecommitdiff
path: root/MorgSimulator/Factory/IMorgFactory.cs
blob: 60537de3e83f25cb27e29262384141641bbcaac7 (plain) (blame)
1
2
3
4
5
6
7
8
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);
    }
}