using System;
namespace InputReporter
{
///
/// The main class for Windows platform.
///
public static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
using var game = new InputReporterGame();
game.Run();
}
}
}