Controller-Slide-Presenter/Program.cs
2024-06-06 23:47:06 +02:00

8 lines
No EOL
166 B
C#

namespace SwitchSlidePresenter {
class Program {
private static async Task Main() {
GamepadReader reader = new JoyConRead();
await reader.Read();
}
}
}