Initial Commit

This commit is contained in:
2026-01-14 14:33:12 +00:00
commit a2130f55c7
80 changed files with 42447 additions and 0 deletions

View File

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