steam-deck-tools/PerformanceOverlay/Program.cs

23 lines
477 B
C#
Raw Normal View History

2022-12-12 15:08:00 +01:00
using CommonHelpers;
using RTSSSharedMemoryNET;
using System.Diagnostics;
namespace PerformanceOverlay
{
internal static class Program
{
[STAThread]
static void Main()
{
2022-12-12 15:08:00 +01:00
Instance.WithSentry(() =>
{
2022-12-12 15:08:00 +01:00
ApplicationConfiguration.Initialize();
using (var controller = new Controller())
{
Application.Run();
}
});
}
}
}