Add initial support for Performance Overlay

This commit is contained in:
Kamil Trzciński 2022-11-13 13:36:50 +01:00
parent c3a3cb4640
commit 059d64827f
19 changed files with 1252 additions and 1 deletions

View file

@ -0,0 +1,29 @@
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();
}
}
}
}