fixed echoes in the Dungeon class

This commit is contained in:
muskenum 2016-03-29 02:07:46 +02:00 committed by Kjistóf
parent 10bb64282b
commit b1f38c6afc

View File

@ -5,8 +5,8 @@ import java.io.File;
public class Dungeon {
cicaprojekt.Tile buildDungeon(File input){
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Dungeon.buildDungeon(File input)");
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Dungeon.buildDungeon(File input)");
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Dungeon.buildDungeon(" + input + ")");
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Dungeon.buildDungeon()");
Menu.removeTab();
return new cicaprojekt.Field(); /*csak hogy ne sírjon*/ }
}