FlashPatcher/DontTouchMyFlash/Program.cs

20 lines
460 B
C#
Raw Normal View History

2021-01-18 06:20:17 +00:00
using System;
using System.Windows.Forms;
namespace FlashPatcher
2021-01-18 06:20:17 +00:00
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FlashPatcherForm());
2021-01-18 06:20:17 +00:00
}
}
}