Implemented onExit in Wall

This commit is contained in:
ericnerdo 2016-04-24 18:36:11 +02:00 committed by Bokros Bálint
parent 6b11456b7a
commit 64e6aec176

View File

@ -16,8 +16,15 @@ public class Wall extends Tile {
}
public void onEntry() {
if(sg == null) {
}
else {
}
}
public void onExit() {
throw new IllegalStateException("Hiba! Te hogy kerültél a falba?");
}
}