15 lines
242 B
C#
15 lines
242 B
C#
namespace Core.Services.Mod.OnLoad;
|
|
|
|
public class OnLoadMod
|
|
{
|
|
public async Task OnLoad()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string GetRoute()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|