Artemis.Engine.TimeableObject.Before C# (CSharp) Method

Before() public method

Returns true if the elapsed time is less than the given time.
public Before ( double time ) : bool
time double
return bool
        public bool Before(double time)
        {
            return ElapsedTime < time;
        }

Same methods

TimeableObject::Before ( int frame ) : bool