This commit is contained in:
backuppc
2026-02-09 13:06:47 +09:00
parent 839486db87
commit bd06f59bf1
18 changed files with 24 additions and 1005 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Windows.Forms;
namespace Supertonic.WinForms
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new fMain());
}
}
}