Files
SPT-Server-Build/Libraries/Core/Services/Mod/OnUpdate/OnUpdateMod.cs
T
2025-01-19 17:45:48 +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();
}
}