steam-deck-tools/PerformanceOverlay/Program.cs

19 lines
368 B
C#
Raw Normal View History

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