You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 23:16:20 +00:00
Move to Renderer V2
This commit is contained in:
@@ -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';
|
||||
Reference in New Issue
Block a user