mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
23 lines
477 B
C#
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();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
} |