GameFramework.TimeSnapshot.DoCheckPoint_ C# (CSharp) Method

DoCheckPoint_() private method

private DoCheckPoint_ ( ) : long
return long
        private long DoCheckPoint_()
        {
            long curTime = TimeUtility.GetElapsedTimeUs();
              long ret = curTime - m_LastSnapshotTime;
              m_LastSnapshotTime = curTime;
              return ret;
        }