more types

This commit is contained in:
CWX
2025-01-06 22:15:13 +00:00
parent b292dcb0b5
commit fdf913c88c
13 changed files with 242 additions and 21 deletions
+14 -1
View File
@@ -1,4 +1,7 @@
using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.Bot;
using Core.Models.Eft.Common;
using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.HttpResponse;
namespace Core.Callbacks;
@@ -14,6 +17,11 @@ public class BotCallbacks
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();
@@ -23,4 +31,9 @@ public class BotCallbacks
{
throw new NotImplementedException();
}
public string GetBotBehaviours()
{
throw new NotImplementedException();
}
}