-
Niko Ehrenfeuchter authoredNiko Ehrenfeuchter authored
Program.cs 439 B
using System;
using System.Windows.Forms;
namespace ATxTray
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new AutoTxTray());
}
}
}