Files
2025-03-12 14:22:16 -04:00

13 lines
298 B
C#

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();
}
}