mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02: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();
|
|
}
|