implemented misteriously gone setAdjacentTile

This commit is contained in:
Bokros Bálint 2016-03-29 10:47:09 +02:00 committed by Kjistóf
parent 0230aec6d8
commit b3ecdf2b95

View File

@ -23,6 +23,12 @@ public abstract class Tile {
return adjacentTile.get(direction);
}
public void setAdajacentTile(Tile newTile, Direction direction) {
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Tile.setAdjacentTile(" + "newTile, " + direction.name() + ")");
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Tile.setAdjacentTile(" + "newTile, " + direction.name() + ")");
Menu.removeTab();
}
public abstract void spawnStargate(Stargate stargate, Direction direction);
public abstract void onEntry();