18 lines
318 B
C#
Raw Normal View History

2026-05-07 10:14:44 +02:00
using UnityEngine;
using System.Collections;
namespace Wing.Utils
{
public class NormalSingleton<T> where T : new()
{
protected static T s_pInstance = new T();
public static T Instance
{
get
{
return s_pInstance;
}
}
}
}