This commit is contained in:
2022-06-07 21:22:12 -05:00
parent 3a9a627e0d
commit dabdb6c6b0
2 changed files with 34 additions and 16 deletions

View File

@@ -81,5 +81,15 @@ namespace Shogi.Domain.Pieces
return Array.Empty<Vector2>();
}
/// <summary>
/// Get all positions this piece could move to from the currentPosition, respecting the move-set of this piece.
/// </summary>
/// <param name="currentPosition"></param>
/// <returns>A list of positions the piece could move to.</returns>
public IEnumerable<Vector2> GetPossiblePositions(Vector2 currentPosition)
{
throw new NotImplementedException();
}
}
}