UI HUGE UPDATE
This commit is contained in:
@@ -1,6 +1,17 @@
|
||||
using UnityEngine;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class idolSkins : MonoBehaviour
|
||||
{
|
||||
|
||||
private AllyHero_SO currentHero;
|
||||
private List<HeroSkinResolvedData> currentSkinSet = new List<HeroSkinResolvedData>();
|
||||
|
||||
public AllyHero_SO CurrentHero => currentHero;
|
||||
public IReadOnlyList<HeroSkinResolvedData> CurrentSkinSet => currentSkinSet;
|
||||
|
||||
public void SetHero(AllyHero_SO hero)
|
||||
{
|
||||
currentHero = hero;
|
||||
currentSkinSet = hero != null ? DlcContentAccess.GetAccessibleSkinSet(hero, true) : new List<HeroSkinResolvedData>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user