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