Files
SPT-Server-Build/Core/Callbacks/ModCallbacks.cs
T
2025-01-07 12:51:59 +00:00

21 lines
311 B
C#

using Core.DI;
namespace Core.Callbacks;
public class ModCallbacks : OnLoad
{
public ModCallbacks()
{
}
public async Task OnLoad()
{
throw new NotImplementedException();
}
public string GetRoute()
{
throw new NotImplementedException();
}
}