Ejemplo n.º 1
0
 public void DespawnBuff(BaseBuff buff)
 {
     if (!System.Object.ReferenceEquals(null, buff))
     {
         BPMgr.Respawn(buff);
     }
 }
Ejemplo n.º 2
0
 public void AddPrototype(BaseBuff buff)
 {
     if (!System.Object.ReferenceEquals(null, buff))
     {
         if (!BuffPrototypes.ContainsKey(buff.KindType))
         {
             BuffPrototypes.Add(buff.KindType, buff);
         }
     }
 }