This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
ZalGen/ZalGen/Program.cs

19 lines
444 B
C#
Raw Permalink Normal View History

2019-09-29 13:21:34 +02:00
using System;
using System.Windows.Forms;
namespace Zalgen
{
2020-03-16 20:49:37 +01:00
internal static class Program
2019-09-29 13:21:34 +02:00
{
/// <summary>
2020-03-16 20:49:37 +01:00
/// The main entry point for the application.
2019-09-29 13:21:34 +02:00
/// </summary>
[STAThread]
2020-03-16 20:49:37 +01:00
private static void Main()
2019-09-29 13:21:34 +02:00
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
2020-03-16 20:49:37 +01:00
}