Change ILoadScreen to take a ModData instance.

This commit is contained in:
Paul Chote
2016-02-07 16:16:12 +00:00
parent aaa5b37199
commit 79b039d8b9
5 changed files with 7 additions and 7 deletions

View File

@@ -33,7 +33,7 @@ namespace OpenRA.Mods.Cnc
Rectangle bounds;
Renderer r;
public override void Init(Manifest m, Dictionary<string, string> info)
public override void Init(ModData modData, Dictionary<string, string> info)
{
loadInfo = info;
@@ -67,7 +67,7 @@ namespace OpenRA.Mods.Cnc
brightBlock = new Sprite(sheet, new Rectangle(320, 0, 16, 35), TextureChannel.Alpha);
dimBlock = new Sprite(sheet, new Rectangle(336, 0, 16, 35), TextureChannel.Alpha);
versionText = m.Mod.Version;
versionText = modData.Manifest.Mod.Version;
}
bool setup;