mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* sloth is so going to kill me * the voices in my head told me to do this * Register ILocalizationManagerInternal on client * Avoid breaking change * Cleanup * Release notes
9 lines
230 B
C#
9 lines
230 B
C#
using Robust.Shared.Localization;
|
|
|
|
namespace Robust.Server.Localization;
|
|
|
|
internal sealed class ServerLocalizationManager : LocalizationManager, ILocalizationManager
|
|
{
|
|
void ILocalizationManager.Initialize() => Initialize();
|
|
}
|