add locations

This commit is contained in:
Ramtin Jafari
2026-07-11 11:33:37 +03:30
parent 0afe5c8c69
commit bd81d42a3b
5 changed files with 79 additions and 15 deletions
@@ -0,0 +1,15 @@
package org.project.location;
import org.project.entity.enemies.Enemy;
import org.project.entity.enemies.Goblin;
public class Jungle extends Location {
public Jungle() {
super("Jungle");
}
@Override
protected Enemy GetEnemy() {
return new Goblin();
}
}