feat: game session start time stamp

This commit is contained in:
Zamitto 2024-06-19 22:05:22 -03:00
parent 800e99fda0
commit 188fe4537a
9 changed files with 45 additions and 34 deletions

View file

@ -127,7 +127,13 @@ export interface Game {
export type LibraryGame = Omit<Game, "repacks">;
export type RunningGameEvent = {
id: number;
sessionStartTimestamp: number;
}[];
export interface RunningGame {
id: number;
title: string;
iconUrl: string;
objectID: string;