steam-deck-tools/PerformanceOverlay/Program.cs
2022-12-12 18:31:29 +01:00

23 lines
477 B
C#

using CommonHelpers;
using RTSSSharedMemoryNET;
using System.Diagnostics;
namespace PerformanceOverlay
{
internal static class Program
{
[STAThread]
static void Main()
{
Instance.WithSentry(() =>
{
ApplicationConfiguration.Initialize();
using (var controller = new Controller())
{
Application.Run();
}
});
}
}
}