13 lines
486 B
Java
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*/ }
|
|
}
|