12 lines
301 B
C#
12 lines
301 B
C#
#if ENABLE_MONO && (DEVELOPMENT_BUILD || UNITY_EDITOR)
|
|
namespace SingularityGroup.HotReload {
|
|
public interface IServerHealthCheck {
|
|
bool IsServerHealthy { get; }
|
|
}
|
|
|
|
internal interface IServerHealthCheckInternal : IServerHealthCheck {
|
|
void CheckHealth();
|
|
}
|
|
}
|
|
#endif
|