feat: added preprocessor directive for platform dependant compilation

This commit is contained in:
Gerard Gascón 2024-06-28 14:39:52 +02:00
parent 1e6f8c0b9f
commit 65d562ee74
5 changed files with 48 additions and 3 deletions

View file

@ -0,0 +1,13 @@
#if OS_MAC
namespace SwitchSlidePresenter.InputSender;
public class MacInputSender : IInputSender {
public void NextSlide() {
}
public void PreviousSlide() {
}
}
#endif