bs launch system rework

This commit is contained in:
MathieuG-P
2022-07-07 23:55:31 +02:00
parent 392cf7fc2b
commit 0c015b52d7
5 changed files with 118 additions and 52 deletions
+10
View File
@@ -0,0 +1,10 @@
import { BSVersion } from "main/services/bs-version-manager.service";
export interface LauchOption {
version: BSVersion,
oculus: boolean,
desktop: boolean,
debug: boolean
}
export type BsLaunchResult = "LAUNCHED" | "STEAM_NOT_RUNNING" | "EXE_NOT_FINDED" | "BS_ALREADY_RUNNING";