8 lines
132 B
C#
8 lines
132 B
C#
namespace SPTarkov.Server.Core.DI;
|
|
|
|
public interface IOnUpdate
|
|
{
|
|
bool OnUpdate(long timeSinceLastRun);
|
|
string GetRoute();
|
|
}
|