# Configuring launch options

All launch configurations are saved in `config` named as `<id>-game.json`.

## Launchers

### Steam

```json
{
    "launcher": "steam",
    "version": 1,
    "data": {
        // Game ID (can be found https://steamdb.info)
        "id": "00000"
    }
}
```

### Native

```json
{
    "launcher": "native",
    "version": 1,
    "data": {
        // Program to run (use \ on windows and / on linux)
        "path": "C:/Program Files/Example Game/game.exe",
        // Working directory
        "dir": "C:/Program Files/Example Game/"
    }
}
```