mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-24 01:05:23 +00:00
16 lines
403 B
C#
16 lines
403 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Daybreak.Services.ApplicationLauncher
|
|
{
|
|
public interface IApplicationLauncher
|
|
{
|
|
bool IsGuildwarsRunning { get; }
|
|
bool IsToolboxRunning { get; }
|
|
bool IsTexmodRunning { get; }
|
|
Task<bool> LaunchGuildwars();
|
|
Task LaunchGuildwarsToolbox();
|
|
Task LaunchTexmod();
|
|
void RestartDaybreakAsAdmin();
|
|
}
|
|
}
|