made cosmetic changes to most of the files: unified coding style

This commit is contained in:
2016-04-23 17:15:19 +02:00
parent 7eeeefa3e2
commit e041576547
11 changed files with 10 additions and 9 deletions

View File

@ -1,11 +1,11 @@
package cicaprojekt;
public class PlayerBase implements Destroyable{
protected Game game;
protected Tile currentTile;
protected Direction facingDirection;
public void destroy() {
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Player.destroy()");
@ -89,5 +89,4 @@ public class PlayerBase implements Destroyable{
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Player.setFacingDirection()");
Menu.removeTab();
}
}