develop #2

Open
Fateme_Azizi wants to merge 21 commits from develop into main
Showing only changes of commit 9c1ff5c518 - Show all commits
@@ -1,4 +1,11 @@
package org.project.entity.enemies;
public class Dragon {
public class Dragon extends Enemy{
private final static EnemyStats stats = new EnemyStats(360, 22, 150);
public Dragon() { super(stats); }
@Override
public String getType() {
return "Dragon";
}
}