mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
15 lines
318 B
C#
15 lines
318 B
C#
using System;
|
|
namespace Nibriboard
|
|
{
|
|
public static class Env
|
|
{
|
|
public static readonly DateTime ServerStartTime = DateTime.Now;
|
|
|
|
public static double SecondsSinceStart {
|
|
get {
|
|
TimeSpan timeSinceStart = DateTime.Now - ServerStartTime;
|
|
return Math.Round(timeSinceStart.TotalSeconds, 4);
|
|
}
|
|
}
|
|
}
|
|
}
|