summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-11-01 12:20:48 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-11-01 12:20:48 (GMT)
commit2cff9c80434511013d56e2ee1710128edcd9de48 (patch)
tree074e0619f169d6fa9440fa889fb1b8c93e67cb35 /Swift/Controllers/DummySoundPlayer.h
parent6c355243a8617b29d391a9a000cdb11464bd3f60 (diff)
downloadswift-2cff9c80434511013d56e2ee1710128edcd9de48.zip
swift-2cff9c80434511013d56e2ee1710128edcd9de48.tar.bz2
Added dummy sound player & system tray.
Diffstat (limited to 'Swift/Controllers/DummySoundPlayer.h')
-rw-r--r--Swift/Controllers/DummySoundPlayer.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Swift/Controllers/DummySoundPlayer.h b/Swift/Controllers/DummySoundPlayer.h
new file mode 100644
index 0000000..36dcb28
--- /dev/null
+++ b/Swift/Controllers/DummySoundPlayer.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2010 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+#include "Swift/Controllers/SoundPlayer.h"
+
+namespace Swift {
+ class DummySoundPlayer : public SoundPlayer {
+ public:
+ void playSound(SoundEffect sound) {};
+ };
+}