steam-deck-tools/PowerControl/Program.cs
Kamil Trzciński b4c07be511 Add PowerControl
Add NeptuneController support (kind of works)

Add Neptune controller directly from hidapi (to reduce rate of requests)

Add README
2022-11-15 20:36:36 +01:00

23 lines
590 B
C#

using PowerControl;
namespace PowerControl
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
using (var controller = new Controller())
{
Application.Run();
}
}
}
}