the Pickable interface now extends Destroyable

This commit is contained in:
Kjistóf 2016-03-29 00:12:52 +02:00
parent ab26f85f0d
commit 02df90bb59
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
package cicaprojekt;
public interface Pickable {
public interface Pickable extends Destroyable {
public void pick();
}