mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 04:07:13 +08:00
8 lines
181 B
C#
8 lines
181 B
C#
namespace Utils
|
|
{
|
|
public abstract class Singleton<T> where T : new()
|
|
{
|
|
private static T _instance;
|
|
public static T Instance => _instance ??= new T();
|
|
}
|
|
} |