diff --git a/Libraries/Core/Services/MatchBotDeatilsCacheService.cs b/Libraries/Core/Services/MatchBotDeatilsCacheService.cs deleted file mode 100644 index 6d6e0c3e..00000000 --- a/Libraries/Core/Services/MatchBotDeatilsCacheService.cs +++ /dev/null @@ -1,36 +0,0 @@ -using SptCommon.Annotations; -using Core.Models.Eft.Common.Tables; - -namespace Core.Services; - -[Injectable(InjectionType.Singleton)] -public class MatchBotDeatilsCacheService -{ - /// - /// Store a bot in the cache, keyed by its name - /// - /// Bot details to cache - public void CacheBot(BotBase botToCache) - { - throw new NotImplementedException(); - } - - /// - /// Clean the cache of all bot details - /// - public void ClearCache() - { - throw new NotImplementedException(); - } - - /// - /// Find a bot in the cache by its name and side - /// - /// Name of bot to find - /// Side of the bot to find - /// Bot details - public BotBase GetBotByNameAndSide(string botName, string botSide) - { - throw new NotImplementedException(); - } -}