mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-06 06:43:49 +00:00
Add PowerControl
Add NeptuneController support (kind of works) Add Neptune controller directly from hidapi (to reduce rate of requests) Add README
This commit is contained in:
parent
4d5c0cd466
commit
b4c07be511
34 changed files with 2716 additions and 28 deletions
23
PowerControl/Program.cs
Normal file
23
PowerControl/Program.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue