Ejemplo n.º 1
0
        public static PartyEntity GetNPCEntity(UInt32 key)
        {
            PartyEntity npc;

            NPCEntities.TryGetValue(key, out npc);
            return(npc);
        }
Ejemplo n.º 2
0
        public static bool RemoveNPCEntity(UInt32 key)
        {
            PartyEntity removed;

            return(NPCEntities.TryRemove(key, out removed));
        }
Ejemplo n.º 3
0
 public static void EnsureNPCEntity(UInt32 key, PartyEntity entity)
 {
     NPCEntities.AddOrUpdate(key, entity, (k, v) => entity);
 }