Files
SPT-Server-Build/Core/Services/Mod/OnUpdate/OnUpdateMod.cs
T
2025-01-09 19:26:55 +00:00

15 lines
277 B
C#

namespace Core.Services.Mod.OnUpdate;
public class OnUpdateMod
{
public async Task<bool> OnUpdate(double timeSinceLastRun)
{
throw new NotImplementedException();
}
public string GetRoute()
{
throw new NotImplementedException();
}
}