Cosmos/source2/Debug/Cosmos.Debug.GDB/Program.cs
kudzu_cp 98320a3f6b
2010-07-26 04:05:18 +00:00

18 lines
507 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Cosmos.Debug.GDB {
static class Program {
[STAThread]
static void Main() {
var xCLine = System.Environment.GetCommandLineArgs();
Settings.Filename = xCLine[1];
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormMain());
}
}
}