cicaprojekt/cicaprojekt/Dungeon.java
muskenum 5f56ed4062 fixed echoes in the Dungeon class
A metódus paraméterét nem tudom, hogy jól írtam-e be a sysoutba
2016-04-01 17:48:00 +02:00

13 lines
486 B
Java

package cicaprojekt;
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)");
Menu.removeTab();
return new cicaprojekt.Field(); /*csak hogy ne sírjon*/ }
}