Makefile madness

This commit is contained in:
Matthew Bowra-Dean
2010-02-17 20:40:19 +13:00
parent b7c49c0218
commit aa1738c345
8 changed files with 112 additions and 36 deletions

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
@@ -118,7 +118,7 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="OpenRA" type="System.Resources.ResXFileRef, System.Windows.Forms">
<!--<data name="OpenRA" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>OpenRA.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
</data>-->
</root>

View File

@@ -1,13 +0,0 @@
using IjwFramework.Types;
using OpenRa.FileFormats;
namespace OpenRa.Game
{
class SharedResources
{
static Lazy<IniFile> rules = new Lazy<IniFile>(
() => new IniFile( FileSystem.Open( "rules.ini" )));
public static IniFile Rules { get { return rules.Value; } }
}
}