Updated OnUpdate to return task<bool>

This commit is contained in:
Chomp
2025-06-05 14:12:10 +01:00
parent 969e94975e
commit 09211c78ee
7 changed files with 38 additions and 32 deletions
@@ -2,5 +2,5 @@ namespace SPTarkov.Server.Core.DI;
public interface IOnUpdate
{
Task OnUpdate(long secondsSinceLastRun);
Task<bool> OnUpdate(long secondsSinceLastRun);
}