ICliController.cs 298 B

12345678910111213
  1. using System.Threading.Tasks;
  2. namespace SingularityGroup.HotReload.Editor.Cli {
  3. interface ICliController {
  4. string BinaryFileName {get;}
  5. string PlatformName {get;}
  6. bool CanOpenInBackground {get;}
  7. Task Start(StartArgs args);
  8. Task Stop();
  9. }
  10. }