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