SimpleTimer.SimpleTimer C# (CSharp) Method

SimpleTimer() public method

timer is implicitly started on instantiation
public SimpleTimer ( float lifeSpan, bool useFixedTime = false ) : System.Collections
lifeSpan float length of the timer
useFixedTime bool use fixed (physics) time or screen update time
return System.Collections
    public SimpleTimer(float lifeSpan, bool useFixedTime = false)
    {
        life = lifeSpan; _fixedTime = useFixedTime; _startTime = _getTime;
    }

Same methods

SimpleTimer::SimpleTimer ( ) : System.Collections