UI update 02
This commit is contained in:
@@ -24,6 +24,7 @@ public class DlcManifestEntry
|
||||
public string[] songLabels;
|
||||
public string[] songContentLabels;
|
||||
public string[] heroSkinLabels;
|
||||
public string[] heroLabels;
|
||||
|
||||
public string GetSafeDlcKey()
|
||||
{
|
||||
@@ -50,6 +51,11 @@ public class DlcManifestEntry
|
||||
return GetResolvedLabels(heroSkinLabels, "dlc:" + GetSafeDlcKey() + ":heroskins");
|
||||
}
|
||||
|
||||
public string[] GetHeroLabels()
|
||||
{
|
||||
return GetResolvedLabels(heroLabels, "dlc:" + GetSafeDlcKey() + ":heroes");
|
||||
}
|
||||
|
||||
public string[] GetDependencyKeys()
|
||||
{
|
||||
List<string> result = new List<string>();
|
||||
@@ -58,6 +64,7 @@ public class DlcManifestEntry
|
||||
AppendUnique(result, GetSongLabels());
|
||||
AppendUnique(result, GetSongContentLabels());
|
||||
AppendUnique(result, GetHeroSkinLabels());
|
||||
AppendUnique(result, GetHeroLabels());
|
||||
return result.ToArray();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user