Flow.Launcher/Flow.Launcher.Core/Resource/InternationalizationManager.cs
2020-04-21 21:27:02 +10:00

26 lines
No EOL
690 B
C#

namespace Flow.Launcher.Core.Resource
{
public static class InternationalizationManager
{
private static Internationalization instance;
private static object syncObject = new object();
public static Internationalization Instance
{
get
{
if (instance == null)
{
lock (syncObject)
{
if (instance == null)
{
instance = new Internationalization();
}
}
}
return instance;
}
}
}
}