예제 #1
0
파일: NullPlatform.cs 프로젝트: ersim53/IE
  public override uint GetPrecisionTime() {
#if USE_DOTNET
    return PrecisionTimer.GetCurrentTime();
#elif (UNITY_ANDROID || UNITY_IPHONE) && !UNITY_EDITOR
    lock (timeLock) {
      return NativePInvoke.GetPrecisionTime();
    }
#endif
  }
예제 #2
0
 public override uint GetPrecisionTime() {
   return PrecisionTimer.GetCurrentTime();
 }
예제 #3
0
 public DotNetPlatform() {
   PrecisionTimer.GetCurrentTime();
 }