Glatzemann 55fac0cc5a - refactored and fixed game timing and timers (bug #988)
- minor updates in ModelSample
- added new media file: ANX Logo mesh (vertex colors, FBX-Format)
2012-09-01 11:20:05 +00:00

27 lines
469 B
C#

using System;
using System.Threading;
namespace ANX.Framework.NonXNA
{
internal static class ThreadHelper
{
public static void Sleep(int milliseconds)
{
#if WINDOWSMETRO
// TODO: search replacement
#else
Thread.Sleep(milliseconds);
#endif
}
public static void Sleep(TimeSpan timeSpan)
{
#if WINDOWSMETRO
// TODO: search replacement
#else
Thread.Sleep(timeSpan);
#endif
}
}
}