예제 #1
0
 /// <summary>Returns whether or not piece is in board bounds.</summary>
 /// <param name="location">The location to test.</param>
 /// <returns>True if specified location is in bounds.</returns>
 public bool InBounds(Point location)
 {
     return(game.InBounds(location));
 }