interface UiManager {
    addLanguagePack(language, languagePack): void;
    getPlayerContainerUiComponent(): null | UiComponent;
}

Implemented by

Methods

  • Add localizations for a specific language

    Parameters

    • language: LanguageKey
    • languagePack: Record<string, string>

    Returns void

  • Get the UI Component of the player

    Returns null | UiComponent