2025-07-08 10:46:31 +00:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace SingularityGroup.HotReload.Editor.Cli {
|
|
|
|
interface ICliController {
|
|
|
|
string BinaryFileName {get;}
|
|
|
|
string PlatformName {get;}
|
|
|
|
bool CanOpenInBackground {get;}
|
|
|
|
|
|
|
|
Task Start(StartArgs args);
|
|
|
|
|
|
|
|
Task Stop();
|
|
|
|
}
|
|
|
|
}
|