Files
HDIP_GUI/RapierHD_Control/Program.cs

19 lines
459 B
C#
Raw Permalink Normal View History

2026-01-14 14:33:12 +00:00
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());
}
}
}