Cosmos/source2/Debug/Cosmos.Debug.GDB/Program.cs
2010-07-10 22:57:15 +00:00

18 lines
496 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Cosmos.Debug.GDB {
static class Program {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormMain());
}
}
}