unity-vendor-packages/com.singularitygroup.hotreload/Editor/CLI/ICliController.cs

13 lines
298 B
C#
Raw Permalink Normal View History

2025-09-07 14:18:42 +08: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();
}
}