Antura.UI.MinigamesUILives.LoseALife C# (CSharp) Method

LoseALife() public method

Removes one active life and retuns the current active ones (the ones with a full heart)
public LoseALife ( ) : int
return int
        public int LoseALife()
        {
            if (!Validate("MinigamesUILives")) return 0;

            return CurrLives == 0 ? 0 : SetCurrLives(CurrLives - 1);
        }