feat: added preprocessor directive for platform dependant compilation
This commit is contained in:
parent
1e6f8c0b9f
commit
65d562ee74
5 changed files with 48 additions and 3 deletions
13
SlidePresenter/InputSender/LinuxInputSender.cs
Normal file
13
SlidePresenter/InputSender/LinuxInputSender.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
#if OS_LINUX
|
||||
namespace SwitchSlidePresenter.InputSender;
|
||||
|
||||
public class LinuxInputSender : IInputSender {
|
||||
public void NextSlide() {
|
||||
|
||||
}
|
||||
|
||||
public void PreviousSlide() {
|
||||
|
||||
}
|
||||
}
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue