示例#1
0
 public void RemoveNpcInteraction(NPC npc)
 {
     if (NpcInteraction.Contains(npc.whoAmI))
     {
         NpcInteraction.Remove(npc.whoAmI);
     }
 }
示例#2
0
 public void ApplyNpcInteraction(NPC npc)
 {
     if (!NpcInteraction.Contains(npc.whoAmI))
     {
         NpcInteraction.Add(npc.whoAmI);
     }
 }
示例#3
0
 public bool ContainsNpcInteraction(NPC npc)
 {
     return(NpcInteraction.Contains(npc.whoAmI));
 }