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