Comments added to Destroyable.java

This commit is contained in:
Siket Melinda Tekla 2016-05-16 15:20:20 +02:00
parent f6ba02007f
commit aa255012da
1 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,12 @@
package cicaprojekt;
/**
* A játékban megsemmisíthető tárgyakat/személyeket összefogó
* interface.
*/
public interface Destroyable {
void destroy();
/**
* A megsemmisítésért felelős függvény.
*/
void destroy();
}