SND\AstrorEnales_cp ca0d730bbb - Working on Metro Platform and Rendering
- Further implementations in the PsVita RenderSystem
2012-08-12 20:00:19 +00:00

26 lines
373 B
C#

using System;
using System.Diagnostics;
using ANX.Framework.NonXNA.PlatformSystem;
namespace ANX.PlatformSystem.Metro
{
public class MetroGameTimer : INativeGameTimer
{
public long Frequency
{
get
{
return Stopwatch.Frequency;
}
}
public long Timestamp
{
get
{
return Stopwatch.GetTimestamp();
}
}
}
}