Files
SPT-Server-Build/Core/Models/Spt/Controllers/BotController.cs
T
2025-01-06 17:57:38 +00:00

41 lines
919 B
C#

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