Files
SPT-Server-Build/Core/Callbacks/ModCallbacks.cs
T

24 lines
539 B
C#

namespace Core.Callbacks;
public class ModCallbacks
{
public void Load()
{
throw new NotImplementedException();
}
public void SendBundle(string sessionID, object req, object resp, object body)
{
throw new NotImplementedException();
}
public string GetBundles(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
public string GetBundle(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
}