From c33342b20245a1b611dc985dadec1db3df3f7521 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Fri, 13 Jul 2012 15:01:54 +0200 Subject: Rename XTM to HTM --- src/htm/Program.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/htm/Program.cs (limited to 'src/htm/Program.cs') 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 + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new HTM()); + } + } +} -- cgit 1.4.1