hexchat/src/htm/Program.cs

22 lines
477 B
C#
Raw Normal View History

2012-06-16 23:45:08 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace thememan
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2012-07-13 09:01:54 -04:00
Application.Run(new HTM());
2012-06-16 23:45:08 -04:00
}
}
}