mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
27 lines
691 B
C#
27 lines
691 B
C#
using CommonHelpers;
|
|
|
|
namespace SteamController
|
|
{
|
|
internal static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Instance.WithSentry(() =>
|
|
{
|
|
// 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();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|