Beispiel #1
0
    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);
    }
Beispiel #2
0
 public void EnterStartingLocation(Investigator i, Location l)
 {
     l.InvestigatorEnteredLocation(i);
     App.View.locationView.LocationUpdated(l);
     i.EnterLocation(l);
 }