mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
9 lines
302 B
C#
9 lines
302 B
C#
namespace Daybreak.Shared.Services.ExecutableManagement;
|
|
public interface IGuildWarsExecutableManager
|
|
{
|
|
void AddExecutable(string executablePath);
|
|
void RemoveExecutable(string executablePath);
|
|
IEnumerable<string> GetExecutableList();
|
|
bool IsValidExecutable(string executablePath);
|
|
}
|