From 708ad09c5eeb42feeb91f69c29ee29139d722b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bokros=20B=C3=A1lint?= Date: Sun, 24 Apr 2016 20:09:02 +0200 Subject: [PATCH] Cosmetic fixes in Stargate --- cicaprojekt/Stargate.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cicaprojekt/Stargate.java b/cicaprojekt/Stargate.java index f7e7bbd..5c3e578 100644 --- a/cicaprojekt/Stargate.java +++ b/cicaprojekt/Stargate.java @@ -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; }