diff options
author | Patrick Griffs <tingping@tingping.se> | 2012-06-17 05:45:08 +0200 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2012-06-17 05:45:08 +0200 |
commit | 6bca080d93e73132a7d41977687bffc476cff697 (patch) | |
tree | f12c8ff8d910b13dfb64c367555cdde328da3bc6 /src/xtm/Program.cs | |
parent | 35821f3875e4a718932f7f67debdeacaa8c6cc3d (diff) |
Add XChat Theme Manager (TingPing)
Diffstat (limited to 'src/xtm/Program.cs')
-rw-r--r-- | src/xtm/Program.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/xtm/Program.cs b/src/xtm/Program.cs new file mode 100644 index 00000000..c9bb7144 --- /dev/null +++ b/src/xtm/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 XTM()); + } + } +} |