rewrote remap code to use yaml descriptions rather than my insane binary format

This commit is contained in:
Chris Forbes
2010-02-26 22:28:51 +13:00
parent 9f8e9c8c64
commit 237b74a0fa
10 changed files with 77 additions and 24 deletions

View File

@@ -48,7 +48,7 @@ namespace OpenRa.FileFormats
}
}
static object GetValue( Type fieldType, string x )
public static object GetValue( Type fieldType, string x )
{
if (x != null) x = x.Trim();
if( fieldType == typeof( int ) )