10 lines
207 B
C#
10 lines
207 B
C#
namespace Core.Services.Mod.OnLoad;
|
|
|
|
public class OnLoadModService
|
|
{
|
|
public void RegisterOnLoad(string name, object onLoad, object getRoute)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|