mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-10 07:44:37 +00:00
281d2789ea
not finished. early wip state
11 lines
269 B
C#
11 lines
269 B
C#
namespace Supercell.GUT.Server.Util;
|
|
|
|
public static class TimeUtil
|
|
{
|
|
private static readonly DateTime s_unixTime = new(1970, 1, 1);
|
|
|
|
public static int GetCurrentTimestamp()
|
|
{
|
|
return (int)DateTime.UtcNow.Subtract(s_unixTime).TotalSeconds;
|
|
}
|
|
}
|