Initial commit

Base files for the project were added.

Update ONeill.java

Update Box.java

fixed everything, code now compiles correctly
This commit is contained in:
ericnerdo
2016-03-28 00:27:24 +02:00
committed by Kjistóf
parent 13fd2e7d04
commit 88b594b666
16 changed files with 280 additions and 0 deletions

13
cicaprojekt/Gap.java Normal file
View File

@ -0,0 +1,13 @@
package cicaprojekt;
public class Gap extends cicaprojekt.Tile
{
@Override
public void spawnStargate(cicaprojekt.Stargate stargate, Direction direction) {
adjacentTile.get(direction).spawnStargate(stargate, direction);
}
public void onEntry() {}
public void onExit() {}
}