Shift loadscreen into mods

This commit is contained in:
Paul Chote
2010-08-25 18:04:01 +12:00
parent b17e6900ec
commit b6b4df703a
7 changed files with 77 additions and 40 deletions

View File

@@ -22,7 +22,7 @@ namespace OpenRA.FileFormats
Sequences, Chrome, Assemblies, ChromeLayout,
Weapons, Voices, Music, Movies, TileSets;
public readonly string ShellmapUid;
public readonly string ShellmapUid, LoadScreen;
public Manifest(string[] mods)
{
@@ -44,6 +44,7 @@ namespace OpenRA.FileFormats
TileSets = YamlList(yaml, "TileSets");
ShellmapUid = yaml["ShellmapUid"].Value;
LoadScreen = yaml["LoadScreen"].Value;
}
static string[] YamlList(Dictionary<string, MiniYaml> ys, string key)