Ejemplo n.º 1
0
 public bool Remove(NPCObject value)
 {
     for (int i = 0; i < NPCObjects.Count; i++)
     {
         if (NPCObjects[i] == value)
         {
             NPCObjects.RemoveAt(i);
             return(true);
         }
     }
     return(false);
 }
Ejemplo n.º 2
0
 public void RemoveAt(int index)
 {
     NPCObjects.RemoveAt(index);
 }