feat: i18n and refactor

This commit is contained in:
Zamitto
2025-05-16 05:19:33 -03:00
parent 6f43da8d28
commit 0a4bdf160c
10 changed files with 94 additions and 97 deletions

View File

@@ -263,6 +263,15 @@ export type GameAchievementFiles = {
[id: string]: AchievementFile[];
};
export interface AchievementNotificationInfo {
title: string;
description?: string;
iconUrl: string;
isHidden: boolean;
isRare: boolean;
isPlatinum: boolean;
points?: number;
}
export interface GameArtifact {
id: string;
artifactLengthInBytes: number;