summary refs log tree commit diff stats
path: root/src/htm/Program.cs
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-13 15:01:54 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-13 15:01:54 +0200
commitc33342b20245a1b611dc985dadec1db3df3f7521 (patch)
tree8baf1fbbb3a9adc9302834e4a70ab24db9fecabd /src/htm/Program.cs
parentc95481a85b077e3b4e2846f63342377f0bf65026 (diff)
Rename XTM to HTM
Diffstat (limited to 'src/htm/Program.cs')
-rw-r--r--src/htm/Program.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/htm/Program.cs b/src/htm/Program.cs
new file mode 100644
index 00000000..ac350f91
--- /dev/null
+++ b/src/htm/Program.cs
@@ -0,0 +1,21 @@
+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);
+            Application.Run(new HTM());
+        }
+    }
+}