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

View File

@@ -39,5 +39,10 @@ namespace OpenRa.Game
recentLines.Add(line);
while (recentLines.Count > logLength) recentLines.RemoveAt(0);
}
public void AddLine(string from, string text)
{
AddLine(Pair.New(from, text));
}
}
}