Files
PCK-Studio/MinecraftUSkinEditor/Classes/StoneVOX/client/Singleton.cs
PhoenixARC 10f1c8daa0 update
2021-08-09 19:05:20 -04:00

14 lines
276 B
C#

namespace stonevox
{
public class Singleton<T> where T : class
{
private static T Instance;
public static T INSTANCE { get { return Singleton<T>.Instance; } }
public Singleton()
{
Instance = this as T;
}
}
}