trimming some more fat

This commit is contained in:
Chris Forbes
2009-12-04 21:49:15 +13:00
parent 179839b00a
commit 7d7be57e5d
6 changed files with 34 additions and 28 deletions

15
OpenRa.Game/Exts.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.Game
{
static class Exts
{
public static string F(this string fmt, params object[] args)
{
return string.Format(fmt, args);
}
}
}