Sigil.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
    void Update()
    {
        //Counts down timer
        if (enabledSigil == false)
        {
            CountDown();
        }

        //Enables sigil on when timer is 0
        if (timer == 0)
        {
            Enable();
        }
    }