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

21
cicaprojekt/Wall.java Normal file
View File

@ -0,0 +1,21 @@
package cicaprojekt;
public class Wall extends Tile {
private Stargate sg;
public void spawnStargate(Stargate stargate, Direction direction) {
if(sg == null)
sg = stargate;
else return;
}
public void clearStargate(){
sg = null;
}
public void onEntry() { }
public void onExit() {}
}