public void MoveInvestigator(Investigator i, Location l) { i.currentLocation.InvestigatorLeftLocation(i); App.View.locationView.LocationUpdated(i.currentLocation); l.InvestigatorEnteredLocation(i); App.View.locationView.LocationUpdated(l); i.EnterLocation(l); }
public void EnterStartingLocation(Investigator i, Location l) { l.InvestigatorEnteredLocation(i); App.View.locationView.LocationUpdated(l); i.EnterLocation(l); }