refactor: extract input sender to an interface for multiple platform support

This commit is contained in:
Gerard Gascón 2024-06-28 14:23:17 +02:00
parent 184f78123a
commit 1e6f8c0b9f
4 changed files with 61 additions and 47 deletions

View file

@ -0,0 +1,6 @@
namespace SwitchSlidePresenter.InputSender;
public interface IInputSender {
void NextSlide();
void PreviousSlide();
}