Queue system & more

This commit is contained in:
2025-07-21 17:07:02 -07:00
parent 8aeaa997be
commit 010c47743a
6 changed files with 109 additions and 30 deletions

View File

@@ -4,6 +4,7 @@ export class DownloadProgress {
constructor (
public version: LauncherVersion,
public progress: number,
public failed: boolean
public failed: boolean,
public queued: boolean
) {}
}

View File

@@ -2,5 +2,6 @@ export interface LauncherVersion {
version: string
displayName: string
platforms: string[]
downloadUrls: string[]
downloadUrls: string[],
executables: string[]
}