예제 #1
0
파일: Room.cs 프로젝트: blackthred/FoxMud
 public void AddNpc(NonPlayer npc)
 {
     if (!npcs.Contains(npc))
     {
         npcs.Add(npc);
     }
 }
예제 #2
0
파일: Room.cs 프로젝트: blackthred/FoxMud
 public void RemoveNpc(NonPlayer npc)
 {
     npcs.Remove(npc);
 }