Beispiel #1
0
 /// <summary>
 /// Based on the bool given,
 /// will turn the flag gui item representing the freeze ability on or off.
 /// </summary>
 /// <param name="active"> status of freeze ability </param>
 internal void freezeActive(bool active)
 {
     if (active)
     {
         freezeFlag.flagActive();
     }
     else
     {
         freezeFlag.flagCooldown();
     }
 }