summaryrefslogtreecommitdiff
path: root/Runtime/Export/SystemClock.cs
blob: a4a26c9037dded448146e685cd9e3fd324ff7887 (plain)
1
2
3
4
5
6
7
8
9
10
namespace UnityEngine
{
internal class SystemClock
{
	public static System.DateTime now
	{
		get { return System.DateTime.Now; }
	}
}
}