Initial commit

This commit is contained in:
2019-11-01 00:01:42 +01:00
commit 3531b72793
22 changed files with 1471 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Windows.Forms;
namespace VAR.ScreenAutomation
{
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 FrmScreenAutomation());
}
}
}