summaryrefslogtreecommitdiffstats
path: root/src/sound/sound.h
diff options
context:
space:
mode:
authorMichał Konopacki <konopacki.m@gmail.com>2012-09-15 22:07:14 +0200
committerMichał Konopacki <konopacki.m@gmail.com>2012-09-15 22:07:14 +0200
commit2847aad51fb8165d3ad6fab3ddb1f0275a6f0815 (patch)
treeea75eb3bf362fb1b6f122cb7ebf3978fecb1675c /src/sound/sound.h
parentc439964d281f55ce66e4efa6e51239ebb112c65e (diff)
parent8ad15c0ef7d06d80abfa736295fbec3c5b005183 (diff)
downloadcolobot-2847aad51fb8165d3ad6fab3ddb1f0275a6f0815.tar.gz
colobot-2847aad51fb8165d3ad6fab3ddb1f0275a6f0815.tar.bz2
colobot-2847aad51fb8165d3ad6fab3ddb1f0275a6f0815.zip
Merge branch 'dev' of github.com:adiblol/colobot into dev
Diffstat (limited to 'src/sound/sound.h')
-rw-r--r--src/sound/sound.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/sound/sound.h b/src/sound/sound.h
index 45ec7e1..566efd5 100644
--- a/src/sound/sound.h
+++ b/src/sound/sound.h
@@ -175,45 +175,45 @@ class CSoundInterface : public CPluginInterface
*/
virtual bool Cache(Sound bSound, std::string bFile) = 0;
- /** Return if plugin is enabled
+ /** Geturn if plugin is enabled
* @return return true if plugin is enabled
*/
- virtual bool RetEnable() = 0;
+ virtual bool GetEnable() = 0;
/** Change sound mode to 2D/3D
* @param bool bMode - true to enable 3D sound
*/
virtual void SetSound3D(bool bMode) = 0;
- /** Return if we use 3D sound
+ /** Geturn if we use 3D sound
* @return true if we have 3D sound enabled
*/
- virtual bool RetSound3D() = 0;
+ virtual bool GetSound3D() = 0;
- /** Return if we have 3D sound capable card
+ /** Geturn if we have 3D sound capable card
* @return true for 3D sound support
*/
- virtual bool RetSound3DCap() = 0;
+ virtual bool GetSound3DCap() = 0;
/** Change global sound volume
* @param int volume - range from 0 to MAXVOLUME
*/
virtual void SetAudioVolume(int volume) = 0;
- /** Return global sound volume
+ /** Geturn global sound volume
* @return global volume as int in range from 0 to MAXVOLUME
*/
- virtual int RetAudioVolume() = 0;
+ virtual int GetAudioVolume() = 0;
/** Set music volume
* @param int volume - range from 0 to MAXVOLUME
*/
virtual void SetMusicVolume(int volume) = 0;
- /** Return music volume
+ /** Geturn music volume
* @return music volume as int in range from 0 to MAXVOLUME
*/
- virtual int RetMusicVolume() = 0;
+ virtual int GetMusicVolume() = 0;
/** Set listener position
* @param Math::Vector eye - position of listener