예제 #1
0
파일: Rack.java 프로젝트: KirbyG/scrabble
 /**
  * Deletes the tile in the ith position
  *
  * @param i the position of the tile
  */
 public void delete(int i) {
   super.delete(i);
   fixPositions();
 }
예제 #2
0
파일: Rack.java 프로젝트: KirbyG/scrabble
 /**
  * Adds a given tile to the rack.
  *
  * @param tile the tile to be added
  */
 public void addTile(Tile tile) {
   super.addTile(tile);
   fixPositions();
 }