Exemplo n.º 1
0
        /// <summary>Retrieves the file paths for the mod logos in the cache.</summary>
        public static Dictionary <LogoSize, string> GetModLogoVersionFileNames(int modId)
        {
            string path = CacheClient.GenerateModLogoVersionInfoFilePath(modId);
            Dictionary <LogoSize, string> retVal;

            LocalDataStorage.ReadJSONFile(path, out retVal);

            return(retVal);
        }
Exemplo n.º 2
0
 public static Dictionary <LogoSize, string> LoadModLogoVersionInfo(int modId)
 {
     return(CacheClient.ReadJsonObjectFile <Dictionary <LogoSize, string> >(CacheClient.GenerateModLogoVersionInfoFilePath(modId)));
 }
Exemplo n.º 3
0
 /// <summary>Retrieves the file paths for the mod logos in the cache.</summary>
 public static Dictionary <LogoSize, string> GetModLogoVersionFileNames(int modId)
 {
     return(IOUtilities.ReadJsonObjectFile <Dictionary <LogoSize, string> >(CacheClient.GenerateModLogoVersionInfoFilePath(modId)));
 }