diff --git a/UnityLauncherPro/Data/DownloadProgress.cs b/UnityLauncherPro/Data/DownloadProgress.cs new file mode 100644 index 0000000..cf4ba8e --- /dev/null +++ b/UnityLauncherPro/Data/DownloadProgress.cs @@ -0,0 +1,14 @@ +namespace UnityLauncherPro +{ + public readonly struct DownloadProgress + { + public long TotalRead { get; } + public long TotalBytes { get; } + + public DownloadProgress(long totalRead, long totalBytes) + { + TotalRead = totalRead; + TotalBytes = totalBytes; + } + } +} \ No newline at end of file diff --git a/UnityLauncherPro/DownloadProgressWindow.xaml b/UnityLauncherPro/DownloadProgressWindow.xaml new file mode 100644 index 0000000..538534d --- /dev/null +++ b/UnityLauncherPro/DownloadProgressWindow.xaml @@ -0,0 +1,22 @@ + + + + + + + +