diff options
Diffstat (limited to 'MorgSimulator/IMovementStrategy.cs')
| -rw-r--r-- | MorgSimulator/IMovementStrategy.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MorgSimulator/IMovementStrategy.cs b/MorgSimulator/IMovementStrategy.cs new file mode 100644 index 0000000..2b073e1 --- /dev/null +++ b/MorgSimulator/IMovementStrategy.cs @@ -0,0 +1,7 @@ +namespace MorgSimulator +{ + public interface IMovementStrategy + { + void Move(Morg morg, (int x, int y) newLocation); + } +} |