InstalledGameInfo
Electron APIs / overlay / InstalledGameInfo
type InstalledGameInfo = object;
Information about a game installed on the user's system.
Includes:
- The Game's ID.
- Installation path and install folder.
- Steam store ID (if installed via Steam).
- Epic Games store ID (if installed via Epic Games Launcher).
- Name of the game.
- Type (
gameorlauncher). - Overlay support status.
Properties
| Property | Type | Description |
|---|---|---|
epicId? | string | The game's Epic Games store ID. |
id | number | The game's ID as declared by the gameslist. |
installFolder? | string | The root folder where the game is installed. (when detected from steam or epic) |
name? | string | Name of the game. |
path? | string | The full file system path to the game's installation directory. |
steamId? | number | The game's Steam store ID. |
supported? | boolean | Indicates if the game supports Overlay. |
type? | GameInfoType | GameInfoType—type of the detected game. |