From aa255012da42f47cceb466d96359128a1eaf3337 Mon Sep 17 00:00:00 2001 From: Siket Melinda Tekla Date: Mon, 16 May 2016 15:20:20 +0200 Subject: [PATCH] Comments added to Destroyable.java --- cicaprojekt/Destroyable.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/cicaprojekt/Destroyable.java b/cicaprojekt/Destroyable.java index f171d13..27acab0 100644 --- a/cicaprojekt/Destroyable.java +++ b/cicaprojekt/Destroyable.java @@ -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(); }