VIP Skinner 2.0.9

Нет прав для скачивания
JSON:
// Get Dict of all items (shortnames) and cached skins
public Dictionary<string, List<CachedSkin>> GetAllCachedSkins()
{
    return _skinsCache;
}
//Get list of all cached skins of a certain item via itemshortname
public List<CachedSkin> GetSkinsItemList(string itemshortname)
{
    List<CachedSkin> cachedSkins = new List<CachedSkin>();
    _skinsCache.TryGetValue(itemshortname, out cachedSkins);
    return cachedSkins;
}
Назад
Сверху