git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1294 993157c7-ee19-0410-b2c4-bb4e9862e678

This commit is contained in:
(no author)
2007-07-17 12:27:42 +00:00
parent 75d6c359f1
commit 4273d4abfe
5 changed files with 30 additions and 3 deletions

21
OpenRa.Game/Log.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace OpenRa.Game
{
static class Log
{
static StreamWriter writer = File.CreateText("../../../log.txt");
static Log()
{
writer.AutoFlush = true;
}
public static void Write(string format, params object[] args)
{
writer.WriteLine(format, args);
}
}
}