namespace BLHX.Server.Common.Utils; public abstract class Singleton where T : new() { static T instance; public static T Instance { get { if (instance == null) instance = new T(); return instance; } set => instance = value; } }