Files
OpenRA/OpenRa.Game/Exts.cs
2009-12-04 21:49:15 +13:00

16 lines
264 B
C#

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);
}
}
}