diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-08-21 07:55:22 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-08-21 07:55:22 (GMT) |
commit | bbb8227780c0faff81cab2ff91f4418c04b72ad1 (patch) | |
tree | 45360e0e9ce9a50e82593aa3e52b766a7c8cba6e /Swift/Controllers | |
parent | 7d40d96d71678af014877369a1f431e72dd69b5d (diff) | |
download | swift-bbb8227780c0faff81cab2ff91f4418c04b72ad1.zip swift-bbb8227780c0faff81cab2ff91f4418c04b72ad1.tar.bz2 |
Added SoundPlayer::isAvailable.
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/SoundPlayer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/Controllers/SoundPlayer.h b/Swift/Controllers/SoundPlayer.h index b71d759..1d7f94d 100644 --- a/Swift/Controllers/SoundPlayer.h +++ b/Swift/Controllers/SoundPlayer.h @@ -12,5 +12,6 @@ namespace Swift { virtual ~SoundPlayer() {}; enum SoundEffect{MessageReceived}; virtual void playSound(SoundEffect sound) = 0; + virtual bool isAvailable() const = 0; }; } |