Beispiel #1
0
 public void AddHuman(ICitizen h)
 {
     PeopleIn.Add(h);
     if (h.Path.Count != 0)
     {
         h.CurrentRoom = Util.ConvertIntToIndex(h.Path.Last());
     }
 }
Beispiel #2
0
 public void RemoveHuman(ICitizen h)
 {
     PeopleIn.Remove(h);
 }