blob: ad1957f679a508239b6e85964ac2da96e60f63cc (
plain) (
tree)
|
|
20245a1b611dc985dadec1db3df3f7521'>c33342b2 ^
|
|
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());
}
}
}
|