public bool IsGameTied(IGrid grid)
 {
     return grid.All(t => t.Content != TileContent.Empty);
 }