summaryrefslogtreecommitdiffstats
path: root/src/sound/sound.h
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2012-08-17 22:43:07 +0200
committererihel <erihel@gmail.com>2012-08-17 22:43:07 +0200
commitc2464d4c71bbc0154287f0b0441aef05e27cf084 (patch)
treed000ff46f5b9e505c94a8e6532668a57c7f78e2a /src/sound/sound.h
parent10b2c562fb7635f9850f1441f08ba8b1a71e31e1 (diff)
downloadcolobot-c2464d4c71bbc0154287f0b0441aef05e27cf084.tar.gz
colobot-c2464d4c71bbc0154287f0b0441aef05e27cf084.tar.bz2
colobot-c2464d4c71bbc0154287f0b0441aef05e27cf084.zip
* changes to ui classes
Diffstat (limited to 'src/sound/sound.h')
-rw-r--r--src/sound/sound.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sound/sound.h b/src/sound/sound.h
index 45ec7e1..c2943f2 100644
--- a/src/sound/sound.h
+++ b/src/sound/sound.h
@@ -143,19 +143,19 @@ enum SoundNext
/**
-* @class CSoundInterface
+* @class CSound
*
* @brief Sound plugin interface
*
*/
-class CSoundInterface : public CPluginInterface
+class CSound : public CPluginInterface
{
public:
- CSoundInterface() {
+ CSound() {
//CInstanceManager::getInstance().AddInstance(CLASS_SOUND, this);
//m_iMan->AddInstance(CLASS_SOUND, this);
};
- virtual ~CSoundInterface() = 0;
+ virtual ~CSound() = 0;
/** Function to initialize sound device
* @param bool b3D - enable support for 3D sound
@@ -163,7 +163,7 @@ class CSoundInterface : public CPluginInterface
virtual bool Create(bool b3D) = 0;
/** Function called to cache all sound effect files.
- * Function calls \link CSoundInterface::Cache() \endlink for each file
+ * Function calls \link CSound::Cache() \endlink for each file
*/
virtual void CacheAll() = 0;