Files
gen1recomp/scripts/play.ps1
T
2026-07-17 20:30:02 -04:00

16 lines
375 B
PowerShell

# One-shot: full setup, then launch the game (Windows).
#
# Usage: powershell -ExecutionPolicy Bypass -File scripts\play.ps1 [-Rom red.gb]
param(
[string]$Rom = $env:ROM_PATH
)
$ErrorActionPreference = 'Stop'
& (Join-Path $PSScriptRoot 'setup.ps1') -Rom $Rom
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
& (Join-Path $PSScriptRoot 'run.ps1')
exit $LASTEXITCODE