simplify Player and Enemy classes

This commit is contained in:
2026-07-08 17:20:19 +03:30
parent ef6c2d3dd0
commit ddc2b8df73
3 changed files with 34 additions and 30 deletions
@@ -4,6 +4,6 @@ import org.project.constants.gameConstant.AttackPowerUp;
public interface IDamager {
public void Damage(IDamageable target, int amount, AttackPowerUp[] powerUps);
public IDamageUtil[] GetUtils();
public IDamageUtil[] GetDamageUtils();
public int GetDamage();
}