mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-10 07:44:37 +00:00
12 lines
269 B
C#
12 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;
|
|||
|
}
|
|||
|
}
|