change pom.xml to use JDK21

This commit is contained in:
2026-05-03 09:24:05 +03:30
parent 78d4bedb08
commit 576a7553c6
2 changed files with 15 additions and 2 deletions
@@ -0,0 +1,13 @@
package org.project.entity.players;
import org.project.entity.Entity;
import org.project.entity.enemies.Enemy;
public interface combatOptions {
void lightAttack(Entity target);
void heavyAttack(Entity target);
void defend();
void heal();
void specialAbility();
}