diff --git a/cicaprojekt/Dungeon.java b/cicaprojekt/Dungeon.java index ac392df..8905cb8 100644 --- a/cicaprojekt/Dungeon.java +++ b/cicaprojekt/Dungeon.java @@ -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*/ } }