Merge branch 'main' into feat/HYD-822

This commit is contained in:
Zamitto
2025-05-14 19:55:43 -03:00
17 changed files with 408 additions and 33 deletions

View File

@@ -53,3 +53,22 @@ export interface SteamAppDetails {
ids: number[];
};
}
export interface SteamShortcut {
appid: number;
appname: string;
Exe: string;
StartDir: string;
icon: string;
ShortcutPath: string;
LaunchOptions: string;
IsHidden: boolean;
AllowDesktopConfig: boolean;
AllowOverlay: boolean;
OpenVR: boolean;
Devkit: boolean;
DevkitGameID: string;
DevkitOverrideAppID: boolean;
LastPlayTime: number;
FlatpakAppID: string;
}