DotRecastNetSim/src/DotRecast.Core/TickWatch.cs

11 lines
316 B
C#
Raw Normal View History

2023-04-06 12:48:36 +03:00
using System;
using System.Diagnostics;
namespace DotRecast.Core
{
public static class TickWatch
{
public static readonly double Frequency = (double)TimeSpan.TicksPerSecond / Stopwatch.Frequency;
public static long Ticks => unchecked((long)(Stopwatch.GetTimestamp() * Frequency));
}
}