Move to Renderer V2

This commit is contained in:
duckietm
2024-04-03 09:27:56 +02:00
parent 110c3ad393
commit b3134ce50b
4080 changed files with 115593 additions and 66375 deletions
@@ -0,0 +1,16 @@
export interface ILocalizationManager
{
init(): Promise<void>;
getRomanNumeral(number: number): string;
getPreviousLevelBadgeId(badgeName: string): string;
hasValue(key: string): boolean;
getValue(key: string, doParams?: boolean): string;
getValueWithParameter(key: string, parameter: string, replacement: string): string;
getValueWithParameters(key: string, parameters: string[], replacements: string[]): string;
setValue(key: string, value: string): void;
registerParameter(key: string, parameter: string, value: string): void;
getBadgeName(key: string): string;
getBadgeDesc(key: string): string;
getBadgePointLimit(badge: string): number;
setBadgePointLimit(badge: string, point: number): void;
}
@@ -0,0 +1 @@
export * from './ILocalizationManager';