Rename XTM to HTM

This commit is contained in:
Berke Viktor
2012-07-13 15:01:54 +02:00
parent c95481a85b
commit c33342b202
17 changed files with 13 additions and 13 deletions

21
src/htm/Program.cs Normal file
View File

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