Initial commit

This commit is contained in:
Daniel
2021-05-15 03:40:58 +03:00
commit f4c3bc5671
58 changed files with 5358 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
using System.Windows.Forms;
namespace CleanFlashInstaller {
static class Program {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new InstallForm());
}
}
}