Index: trunk/ab5.0/jenga/src/common/String.cpp
===================================================================
--- trunk/ab5.0/jenga/src/common/String.cpp	(revision 590)
+++ trunk/ab5.0/jenga/src/common/String.cpp	(revision 607)
@@ -26,4 +26,11 @@
 }
 
+std::string Jenga::Common::ToString( int n )
+{
+	char temp[255];
+	wsprintf( temp, "%d", n );
+	return temp;
+}
+
 std::wstring Jenga::Common::ToWString( const std::string &str )
 {
