refactor: extract input sender to an interface for multiple platform support
This commit is contained in:
parent
184f78123a
commit
1e6f8c0b9f
4 changed files with 61 additions and 47 deletions
6
SlidePresenter/InputSender/IInputSender.cs
Normal file
6
SlidePresenter/InputSender/IInputSender.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace SwitchSlidePresenter.InputSender;
|
||||
|
||||
public interface IInputSender {
|
||||
void NextSlide();
|
||||
void PreviousSlide();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue