Blame mono/Assistance/Timer.cs

c66393
using System;
c66393
c66393
namespace Assistance {
c66393
	public class Timer {
c66393
		public static readonly long frequency = System.Diagnostics.Stopwatch.Frequency;
c66393
		public static readonly double step = 1.0/(double)frequency;
c66393
c66393
   		private static readonly System.Diagnostics.Stopwatch instance = new System.Diagnostics.Stopwatch();
c66393
   		
c66393
   		static Timer() { instance.Start(); }
c66393
   		
c66393
   		public static long ticks()
c66393
   			{ return instance.ElapsedTicks; }
c66393
	}
c66393
}
c66393