CapersProject/Packages/com.singularitygroup.hotreload/Runtime/IServerHealthCheck.cs

12 lines
301 B
C#
Raw Normal View History

2024-06-23 16:14:01 +00:00
#if ENABLE_MONO && (DEVELOPMENT_BUILD || UNITY_EDITOR)
namespace SingularityGroup.HotReload {
public interface IServerHealthCheck {
bool IsServerHealthy { get; }
}
internal interface IServerHealthCheckInternal : IServerHealthCheck {
void CheckHealth();
}
}
#endif