Move ModContent out of the engine.

This commit is contained in:
Paul Chote
2016-08-05 19:05:43 +01:00
parent bf4867909f
commit cff8e949d8
9 changed files with 26 additions and 9 deletions

View File

@@ -11,7 +11,6 @@
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using OpenRA.Graphics;
using OpenRA.Widgets;
@@ -58,5 +57,10 @@ namespace OpenRA.Mods.Common.LoadScreens
if (sprite != null)
sprite.Sheet.Dispose();
}
public bool RequiredContentIsInstalled()
{
return true;
}
}
}