develop #2

Open
Fateme_Azizi wants to merge 21 commits from develop into main
Showing only changes of commit b5c3f6f338 - Show all commits
@@ -1,4 +1,14 @@
package org.project.entity.enemies; package org.project.entity.enemies;
public class EnemyStats { public class EnemyStats {
public final int maxHP;
public final int damage;
public final int xpReward;
public EnemyStats(int maxHP, int damage, int xpReward) {
this.maxHP = maxHP;
this.damage = damage;
this.xpReward = xpReward;
}
} }