This commit is contained in:
Tassilo Schweyer 2026-06-12 19:36:27 +02:00
parent 56e19e8039
commit ad4f8727b8
39 changed files with 538 additions and 70 deletions

View file

@ -18,8 +18,8 @@ package de.welterde.em.w;
import de.welterde.em.EntityBase;
import de.welterde.em.EntityRef;
import de.welterde.em.EntityStorage;
import java.util.EnumSet;
import de.welterde.em.GameContext;
/**
*
@ -30,7 +30,7 @@ public class Outpost extends EntityBase {
protected final OutpostLocationType locationType;
protected EntityRef<City> city;
public Outpost(EntityStorage ctx, int id, OutpostLocationType locationType) {
public Outpost(GameContext ctx, int id, OutpostLocationType locationType) {
super(ctx, id);
this.flags = EnumSet.noneOf(OutpostFlags.class);
this.locationType = locationType;