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

19 lines
367 B
C#

namespace Core.Callbacks;
public class HttpCallbacks
{
public void Load()
{
throw new NotImplementedException();
}
public void SendImage(string sessionID, object req, object resp, object body)
{
throw new NotImplementedException();
}
public string GetImage()
{
throw new NotImplementedException();
}
}