9 lines
114 B
C#

namespace HTraceWSGI.Scripts.Services
{
public interface IService
{
void LateUpdate();
void Cleanup();
}
}