feat: pinning and showing featuring games in profile

This commit is contained in:
Moyasee
2025-09-23 15:21:32 +03:00
parent 2604dfea22
commit 33c15baf0e
15 changed files with 192 additions and 3 deletions

View File

@@ -71,6 +71,8 @@ export type UserGame = {
achievementCount: number;
achievementsPointsEarnedSum: number;
hasManuallyUpdatedPlaytime: boolean;
isFavorite: boolean;
isPinned: boolean;
} & ShopAssets;
export interface GameRunning {

View File

@@ -44,6 +44,7 @@ export interface Game {
executablePath?: string | null;
launchOptions?: string | null;
favorite?: boolean;
pinned?: boolean;
automaticCloudSync?: boolean;
hasManuallyUpdatedPlaytime?: boolean;
}