prep for mod trait support

This commit is contained in:
Chris Forbes
2009-12-28 09:38:11 +13:00
parent 5e21f6393b
commit fc030fae5c
2 changed files with 14 additions and 11 deletions

View File

@@ -13,9 +13,9 @@ namespace OpenRa
inner.Add( t, val );
}
public void Add<T>( T val )
public void Add( object val )
{
Add( typeof( T ), val );
Add( val.GetType(), val );
}
public void Remove<T>()