summary refs log blame commit diff stats
path: root/src/htm/app.config
blob: ad1957f679a508239b6e85964ac2da96e60f63cc (plain) (tree)
1
2
3


                                                                                                         
20245a1b611dc985dadec1db3df3f7521'>c33342b2 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                 
                                       


         
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());
        }
    }
}