diff options
Diffstat (limited to 'Swift/Controllers/SoundPlayer.h')
-rw-r--r-- | Swift/Controllers/SoundPlayer.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Swift/Controllers/SoundPlayer.h b/Swift/Controllers/SoundPlayer.h new file mode 100644 index 0000000..b411f24 --- /dev/null +++ b/Swift/Controllers/SoundPlayer.h @@ -0,0 +1,10 @@ +#pragma once + +namespace Swift { + class SoundPlayer { + public: + virtual ~SoundPlayer() {}; + enum SoundEffect{MessageReceived}; + virtual void playSound(SoundEffect sound) = 0; + }; +} |