787752b555
* Make OnUpdate a task instead a void, handle OnUpdate better by running it in it's own task * Make helper transient, resolve mod loading issues
7 lines
109 B
C#
7 lines
109 B
C#
namespace SPTarkov.Server.Core.DI;
|
|
|
|
public interface IOnUpdate
|
|
{
|
|
Task OnUpdate(long timeSinceLastRun);
|
|
}
|