Example #1
0
 public void removeLivingEntity(Monster entity)
 {
     livingList.Remove(entity);
     monsterList.Remove(entity);
 }
Example #2
0
 public void addLivingEntity(Monster entity)
 {
     livingList.Add(entity);
     monsterList.Add(entity);
 }