summaryrefslogtreecommitdiff
path: root/MorgSimulator/IMovementStrategy.cs
blob: 2b073e164c2e01b5bdc7aa831c8154d81d152cb1 (plain) (blame)
1
2
3
4
5
6
7
namespace MorgSimulator
{
    public interface IMovementStrategy
    {
        void Move(Morg morg, (int x, int y) newLocation);
    }
}