Files
SPT-Server-Build/Core/Models/Spt/Callbacks/ModCallbacks.cs
T
2025-01-06 18:22:04 +00:00

24 lines
550 B
C#

namespace Core.Models.Spt.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();
}
}