Complete game

This commit is contained in:
2026-05-15 23:50:32 +03:30
parent 0e04d8a1a2
commit aac9687228
42 changed files with 403 additions and 179 deletions
@@ -4,7 +4,9 @@ public interface Entity {
void specialAbility(Entity target);
void defend();
void defend(boolean value);
boolean isDefending();
void heal(int health);
@@ -14,6 +16,8 @@ public interface Entity {
void stun(boolean value);
void dodge(boolean value);
String getName();
boolean isAlive();
}