steam-deck-tools/SteamController/Program.cs

27 lines
691 B
C#
Raw Permalink Normal View History

2022-12-12 15:08:00 +01:00
using CommonHelpers;
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-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();
}
});
}
}
}