mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 22:47:16 +00:00
* Added PCK-Studio-Updater project * Updated PCK-Studio-Updater to be a standanlone executable and added checkbox for using beta builds in the settings panel * Rename constant define '_NOT_DEBUG' to 'NDEBUG' and moved it to .csproj file
20 lines
440 B
C#
20 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PCKStudio_Updater
|
|
{
|
|
public interface IUpdateDownloader
|
|
{
|
|
public bool IsUpdateAvailable(Version currentVersion);
|
|
public bool IsUpdateAvailable(string currentVersionString);
|
|
|
|
public void DownloadTo(DirectoryInfo directory);
|
|
|
|
public void Launch();
|
|
}
|
|
}
|