예제 #1
0
파일: Tile.java 프로젝트: Gas91/fx2048
 public void merge(Tile another) {
   getStyleClass().remove("tile-" + value);
   this.value += another.getValue();
   setText(value.toString());
   merged = true;
   getStyleClass().add("tile-" + value);
 }
예제 #2
0
파일: Tile.java 프로젝트: Gas91/fx2048
 public boolean isMergeable(Tile anotherTile) {
   return anotherTile != null && getValue().equals(anotherTile.getValue());
 }