Files
SPT-Server-Build/Core/Callbacks/BotCallbacks.cs
T
2025-01-07 12:51:59 +00:00

44 lines
1.0 KiB
C#

using Core.Models.Eft.Bot;
using Core.Models.Eft.Common;
using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.HttpResponse;
namespace Core.Callbacks;
public class BotCallbacks
{
public BotCallbacks()
{
}
public string GetBotLimit(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string GetBotDifficulty(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public Dictionary<string, Difficulties> GetAllBotDifficulties(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public GetBodyResponseData<List<BotBase>> GenerateBots(string url, GenerateBotsRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public string GetBotCap()
{
throw new NotImplementedException();
}
public string GetBotBehaviours()
{
throw new NotImplementedException();
}
}