sourcemod/tools/profiler/csharp/Program.cs
David Anderson 0817bd0b8b added amb256 - (nice number), profiler complete with gui to show files
--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401914
2008-03-02 06:40:59 +00:00

20 lines
476 B
C#

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