Files
SPT-Server-Build/Core/DI/OnUpdate.cs
T
2025-01-07 10:57:50 +00:00

7 lines
120 B
C#

namespace Core.DI;
public interface OnUpdate
{
Task<bool> OnUpdate(long timeSinceLastRun);
string GetRoute();
}