예제 #1
0
 public Tile TileAt(BoardLocation location)
 {
     return(this[location]);
 }
예제 #2
0
 public Tile this[BoardLocation location]
 {
     get { return(this[location.Column, location.Row]); }
     set { this[location.Column, location.Row] = value; }
 }
예제 #3
0
 public bool TileExistsAt(BoardLocation location)
 {
     return(TileAt(location) != null);
 }