moved Log, Stopwatch to FileFormats. Added Support/Timer.
This commit is contained in:
19
OpenRa.FileFormats/Support/Log.cs
Executable file
19
OpenRa.FileFormats/Support/Log.cs
Executable file
@@ -0,0 +1,19 @@
|
||||
using System.IO;
|
||||
|
||||
namespace OpenRa
|
||||
{
|
||||
public 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user