Section.thatsMe C# (CSharp) Method

thatsMe() public method

public thatsMe ( float time ) : bool
time float
return bool
    public bool thatsMe(float time)
    {
        if (time >= t_upToHere && time < t_end)
            return true;
        return false;
    }