Basic job implementation #5

Merged
erns6604 merged 10 commits from player into main 2025-10-17 10:06:38 +02:00
Showing only changes of commit b0438755e5 - Show all commits

View File

@@ -1,7 +1,6 @@
import Job.Job;
public class Player extends Character implements Movable {
protected Job job;
public Player(String name, Job job) {
super(name);
@@ -12,7 +11,6 @@ public class Player extends Character implements Movable {
super(name);
}
@Override
public void moveTo(Position position) {
setPosition(position);