package cicaprojekt; public class Box implements Pickable, Destroyable { private int weight = 5; public Box() { } public void destroy() { } public void pick() { } @Override public int weight() { return this.weight; } }