diff --git a/cicaprojekt/ZPM.java b/cicaprojekt/ZPM.java index c4ffde5..bea9ff2 100644 --- a/cicaprojekt/ZPM.java +++ b/cicaprojekt/ZPM.java @@ -19,4 +19,13 @@ public class ZPM implements Pickable System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "ZPM.destroy()"); Menu.removeTab(); } + + @Override + public int weight() { + Menu.addTab(); + System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "ZPM.weight()"); + System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "ZPM.weight()"); + Menu.removeTab(); + return 0; + } }