public GridMap(int id, string name, string description, GridLocation worldLocation) : this(id, name, description) { Location = worldLocation; }
public GridMap(int id, string name, string description, GridLocation worldLocation, IEnumerable <Exits> exits) : this(id, name, description, worldLocation) { _exits = exits.ToList(); }