2022-12-12 15:08:00 +01:00
|
|
|
using CommonHelpers;
|
|
|
|
|
|
2022-11-24 22:37:24 +01:00
|
|
|
namespace SteamController
|
|
|
|
|
{
|
|
|
|
|
internal static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The main entry point for the application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
2022-12-12 15:08:00 +01:00
|
|
|
Instance.WithSentry(() =>
|
2022-11-24 22:37:24 +01:00
|
|
|
{
|
2022-12-12 15:08:00 +01:00
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
|
ApplicationConfiguration.Initialize();
|
|
|
|
|
|
|
|
|
|
using (var controller = new Controller())
|
|
|
|
|
{
|
|
|
|
|
Application.Run();
|
|
|
|
|
}
|
|
|
|
|
});
|
2022-11-24 22:37:24 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|