GameFramework.TimeUtility.GetMillisecondsFromLastResponse C# (CSharp) Method

GetMillisecondsFromLastResponse() public static method

public static GetMillisecondsFromLastResponse ( ) : long
return long
        public static long GetMillisecondsFromLastResponse()
        {
            if (s_LastResponseTime <= 0)
            return 0;
              return GetLocalMilliseconds() - s_LastResponseTime;
        }