add ttsproject

This commit is contained in:
backuppc
2026-02-09 13:06:25 +09:00
parent 35a057367c
commit 839486db87
13 changed files with 1580 additions and 0 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());
}
}
}