This commit is contained in:
2025-06-09 00:11:54 +08:00
parent d8c6eb0bd6
commit c773a6bb8d
11207 changed files with 48929 additions and 304 deletions

View File

@@ -0,0 +1,25 @@
/* INFINITY CODE 2013-2019 */
/* http://www.infinity-code.com */
using System;
namespace InfinityCode.RealWorldTerrain
{
public struct RealWorldTerrainTimer
{
private long start;
public double seconds
{
get { return (DateTime.Now.Ticks - start) / 10000000d; }
}
public static RealWorldTerrainTimer Start()
{
return new RealWorldTerrainTimer
{
start = DateTime.Now.Ticks
};
}
}
}