feat: show running game on sidebar

This commit is contained in:
Zamitto 2024-06-19 19:07:36 -03:00
parent e933cec888
commit 4a59a52174
13 changed files with 85 additions and 12 deletions

View file

@ -127,6 +127,14 @@ export interface Game {
export type LibraryGame = Omit<Game, "repacks">;
export interface RunningGame {
title: string;
iconUrl: string;
objectID: string;
shop: GameShop;
sessionStartTimestamp: number;
}
export interface DownloadProgress {
downloadSpeed: number;
timeRemaining: number;