Releasing version one.

This commit is contained in:
2026-05-13 13:21:41 +03:30
parent 78d4bedb08
commit 2ec3641f00
40 changed files with 562 additions and 62 deletions
@@ -1,9 +1,8 @@
package org.project.entity;
public interface Entity {
void attack(Entity target);
void defend();
void attack(Entity target);
void heal(int health);
@@ -14,8 +13,4 @@ public interface Entity {
int getMaxHP();
int getMaxMP();
/*
TODO: ADD OTHER REQUIRED AND BONUS METHODS
*/
}