complete entity packge

This commit is contained in:
2026-05-07 09:16:55 +03:30
parent 9804cf7237
commit d033105e33
@@ -1,7 +1,6 @@
package org.project.entity; package org.project.entity;
public interface Entity { public interface Entity {
void attack(Entity target);
void defend(); void defend();
@@ -15,7 +14,6 @@ public interface Entity {
int getMaxMP(); int getMaxMP();
/* boolean isAlive();
TODO: ADD OTHER REQUIRED AND BONUS METHODS
*/
} }