Added missing override annotations

This commit is contained in:
Bokros Bálint
2016-05-14 13:47:14 +02:00
parent b02a5756a5
commit f8eb39d2fb
7 changed files with 12 additions and 0 deletions

View File

@ -11,11 +11,13 @@ public class Gap extends cicaprojekt.Tile {
return true;
}
@Override
public void onEntry(PlayerBase playerBase) {
super.onEntry(playerBase);
playerBase.destroy();
}
@Override
public void onExit(PlayerBase playerBase) throws IllegalStateException {
throw new IllegalStateException("Hiba! A szakadékból nem jut ki semmi!");
}