added method Tile.isSteppable() for obvious reasons...

This commit is contained in:
2016-05-13 17:59:14 +02:00
parent 39a442ba14
commit 06f4e32942
7 changed files with 48 additions and 4 deletions

View File

@ -5,6 +5,12 @@ public class Gap extends cicaprojekt.Tile {
super();
}
@Override
public boolean isSteppable()
{
return true;
}
@Override
public void spawnStargate(cicaprojekt.Stargate stargate, Direction direction) {
adjacentTile.get(direction).spawnStargate(stargate, direction);