Files
Warhound/WarhoundConsole/Singleton.cs
2025-12-07 04:14:03 +09:00

19 lines
278 B
C#

namespace WarhoundConsole
{
public sealed class Singleton
{
public static Singleton I => i ??= new();
private static Singleton? i = null;
private Singleton()
{
}
public void Initialize()
{
}
}
}