Implement Player classes

This commit is contained in:
2026-05-12 23:03:26 +03:30
parent ababde553b
commit b03aad9420
5 changed files with 126 additions and 21 deletions
@@ -2,6 +2,7 @@ package org.project.entity;
public interface Entity {
public void specialAbility(Entity target);
void defend();
@@ -11,6 +12,8 @@ public interface Entity {
void takeDamage(int damage);
void stun(boolean value);
void dodge(boolean value);
}