feat: simplified and modularized gamepad reader

This commit is contained in:
Gerard Gascón 2024-06-06 23:47:06 +02:00
parent 8717f9d716
commit 0ebb7f6459
4 changed files with 72 additions and 66 deletions

8
GamepadReader.cs Normal file
View file

@ -0,0 +1,8 @@
namespace SwitchSlidePresenter;
public abstract class GamepadReader {
public abstract event Action NextSlide;
public abstract event Action PrevSlide;
public abstract Task Read();
}