mirror of
https://github.com/ConjureETS/MeltedBananasOJam2016.git
synced 2026-03-24 02:21:06 +00:00
19 lines
266 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
|