added echoes to the ZPM class

This commit is contained in:
Kjistóf 2016-03-29 00:34:26 +02:00
parent 55cba088f9
commit 96e2888d59
1 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,6 @@
package cicaprojekt;
public class ZPM implements cicaprojekt.Pickable
public class ZPM implements Pickable
{
public void pick()
@ -11,4 +11,12 @@ public class ZPM implements cicaprojekt.Pickable
Menu.removeTab();
}
@Override
public void destroy()
{
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "ZPM.destroy()");
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "ZPM.destroy()");
Menu.removeTab();
}
}