Files
SPT-Server-Build/Core/Callbacks/InraidCallbacks.cs
T
2025-01-07 10:42:52 +00:00

38 lines
934 B
C#

using Core.Models.Eft.Common;
using Core.Models.Eft.HttpResponse;
using Core.Models.Eft.InRaid;
namespace Core.Callbacks;
public class InraidCallbacks
{
public InraidCallbacks()
{
}
public NullResponseData RegisterPlayer(string url, RegisterPlayerRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public NullResponseData SaveProgress(string url, ScavSaveRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string GetRaidMenuSettings()
{
throw new NotImplementedException();
}
public string GetTraitorScavHostileChance(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string GetBossConvertSettings(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
}