Implemented a basic way to queue games using DownloadService. Games will download and extract without blocking UI, but more needs to be done to reflect the game in UI and database.
22 lines
429 B
C#
22 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LANCommander.Client.Enums
|
|
{
|
|
public enum DownloadStatus
|
|
{
|
|
Idle,
|
|
Downloading,
|
|
InstallingRedistributables,
|
|
InstallingMods,
|
|
InstallingExpansions,
|
|
RunningScripts,
|
|
DownloadingSaves,
|
|
Canceled,
|
|
Failed,
|
|
Complete
|
|
}
|
|
}
|