steam-deck-tools/PerformanceOverlay/Program.cs

29 lines
676 B
C#
Raw Normal View History

using RTSSSharedMemoryNET;
namespace PerformanceOverlay
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
try
{
foreach (var entry in RTSSSharedMemoryNET.OSD.GetOSDEntries())
{
Console.WriteLine("Entry: {0}", entry.Owner);
Console.WriteLine("\t", entry.Text);
}
}
catch(SystemException)
{ }
using (var controller = new Controller())
{
Application.Run();
}
}
}
}