From 5f56ed4062b48f90f36126718019ca5da3195f38 Mon Sep 17 00:00:00 2001 From: muskenum Date: Tue, 29 Mar 2016 01:53:21 +0200 Subject: [PATCH] fixed echoes in the Dungeon class MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A metódus paraméterét nem tudom, hogy jól írtam-e be a sysoutba --- cicaprojekt/Dungeon.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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*/ } }