/**
 * Represents a playing piece (or token) as might be placed on a game board.
 * Includes the (x, y) coordinates and the single character used to represent
 * this token.
 */
public class BoardToken {

  public int x;
  public int y;
  public char letter;

}