예제 #1
0
        /// <summary>
        /// This function will return the list of files requirements to complete this mod's installation.
        /// <param name="modFiles">The list of files inside the mod archive.</param>
        /// </summary>
        protected async Task <IScriptType> GetScriptType(IList <string> modFiles)
        {
            ModFormatManager FormatManager = new ModFormatManager();

            return(await FormatManager.GetScriptType(modFiles));
        }
예제 #2
0
        /// <summary>
        /// This function will return the list of files requirements to complete this mod's installation.
        /// <param name="modFiles">The list of files inside the mod archive.</param>
        /// </summary>
        protected async Task <IScriptType> GetScriptType(IList <string> modFiles, string extractedFilePath = null)
        {
            ModFormatManager FormatManager = new ModFormatManager();

            return(await FormatManager.GetScriptType(modFiles, extractedFilePath));
        }