Initial version

This commit is contained in:
2025-07-17 21:43:48 +02:00
parent fa9b594574
commit fe283384af
42 changed files with 10806 additions and 42 deletions

21
Analyzer/Program.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Windows.Forms;
namespace EonaCat.HID.Analyzer
{
// This file is part of the EonaCat project(s) which is released under the Apache License.
// See the LICENSE file or go to https://EonaCat.com/license for full license details.
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 MainForm());
}
}
}