Cosmetic fixes in Stargate

This commit is contained in:
Bokros Bálint 2016-04-24 20:09:02 +02:00
parent 73c42991eb
commit 708ad09c5e

View File

@ -7,7 +7,7 @@ public class Stargate {
public static final Stargate blueStargate = new Stargate();
public /*final*/ Stargate other; //TODO find better ways to do this
private cicaprojekt.Wall currentWall;
private Wall currentWall;
public static void init() {
@ -15,11 +15,11 @@ public class Stargate {
blueStargate.other = yellowStargate;
}
public cicaprojekt.Wall getCurrentWall() {
public Wall getCurrentWall() {
return currentWall;
}
public void setCurrentWall(cicaprojekt.Wall wall) {
public void setCurrentWall(Wall wall) {
currentWall = wall;
}