Move BotController and start controllers

This commit is contained in:
CWX
2025-01-06 19:16:49 +00:00
parent 032a89fb93
commit 5d20b3278d
3 changed files with 20 additions and 2 deletions
+41
View File
@@ -0,0 +1,41 @@
using Core.Models.Eft.Common.Tables;
namespace Core.Controllers;
public class BotController
{
public int GetBotLimit(string type)
{
throw new NotImplementedException();
}
public object GetBotDifficulty(string type, string difficulty) // TODO: return type was: IBotCore | IDifficultyCategories
{
throw new NotImplementedException();
}
public bool IsBotPmc(string botRole)
{
throw new NotImplementedException();
}
public bool IsBotBoss(string botRole)
{
throw new NotImplementedException();
}
public bool IsBotFollower(string botRole)
{
throw new NotImplementedException();
}
public List<BotBase> Generate(GenerateBotsRequestData info, bool playerscav)
{
throw new NotImplementedException();
}
public int GetBotCap()
{
throw new NotImplementedException();
}
}