Exemple #1
0
 public void BuffCollected(InGameBuff collected)
 {
     inGameBuffs.Add(collected);
 }
Exemple #2
0
 public void BuffExpired(InGameBuff expired)
 {
     inGameBuffs.Remove(expired);
 }
Exemple #3
0
 public bool IsBuffExists(InGameBuff buff)
 {
     return(inGameBuffs.Exists(b => b.buffData._name == buff.buffData._name));
 }