15 lines
277 B
C#
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();
|
|
}
|
|
}
|