change pom.xml to use JDK21
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user