fixed echoes in the Dungeon class

A metódus paraméterét nem tudom, hogy jól írtam-e be a sysoutba
This commit is contained in:
muskenum 2016-03-29 01:53:21 +02:00 committed by Kjistóf
parent 79bd5062ec
commit 5f56ed4062
1 changed files with 6 additions and 1 deletions

View File

@ -3,5 +3,10 @@ package cicaprojekt;
import java.io.File;
public class Dungeon {
cicaprojekt.Tile buildDungeon(File input){ return new cicaprojekt.Field(); /*csak hogy ne sírjon*/ }
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)");
Menu.removeTab();
return new cicaprojekt.Field(); /*csak hogy ne sírjon*/ }
}