From 25d9eebbf17421cf6ca60cb468b190b47fbe08d7 Mon Sep 17 00:00:00 2001 From: Chomp Date: Fri, 24 Jan 2025 09:38:19 +0000 Subject: [PATCH] Removed redundant class --- Libraries/Core/Services/ModCompilerService.cs | 53 ------------------- 1 file changed, 53 deletions(-) delete mode 100644 Libraries/Core/Services/ModCompilerService.cs diff --git a/Libraries/Core/Services/ModCompilerService.cs b/Libraries/Core/Services/ModCompilerService.cs deleted file mode 100644 index c560da88..00000000 --- a/Libraries/Core/Services/ModCompilerService.cs +++ /dev/null @@ -1,53 +0,0 @@ -using SptCommon.Annotations; - -namespace Core.Services; - -[Injectable(InjectionType.Singleton)] -public class ModCompilerService -{ - /// - /// Convert a mods TS into JS - /// - /// Name of mod - /// Dir path to mod - /// - /// - public async Task CompileMod(string modName, string modPath, List modTypeScriptFiles) - { - throw new NotImplementedException(); - } - - /// - /// Convert a TS file into JS - /// - /// Paths to TS files - /// Compiler options - /// - protected async Task Compile(List fileNames, object options) - { - throw new NotImplementedException(); - } - - /// - /// Do the files at the provided paths exist - /// - /// - /// - protected bool AreFilesReady(List fileNames) - { - throw new NotImplementedException(); - } - - /// - /// Wait the provided number of milliseconds - /// - /// Milliseconds - /// - protected async Task Delay(int ms) - { - throw new NotImplementedException(); - } -} - - -// TODO: this probably isnt needed but AI go brr so i did