add locations
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user