2016-06-26 10:50:19 -04:00

19 lines
266 B
C#

using System;
public static class TimeManager
{
private static float slowFactor;
public static float SlowFactor
{
get
{
return slowFactor;
}
set
{
slowFactor = value;
}
}
}