forked from bit/DotRecastNetSim
11 lines
318 B
C#
11 lines
318 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace DotRecast.Core
|
|
{
|
|
public static class RcFrequency
|
|
{
|
|
public static readonly double Frequency = (double)TimeSpan.TicksPerSecond / Stopwatch.Frequency;
|
|
public static long Ticks => unchecked((long)(Stopwatch.GetTimestamp() * Frequency));
|
|
}
|
|
} |