diff options
| author | GreYFoXGTi <GreYFoXGTi@GMaiL.CoM> | 2011-02-12 12:40:36 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-02-12 21:18:41 +0100 |
| commit | 1b2703aaba9ef21b8fca7c12b299fcd0fd4b9251 (patch) | |
| tree | d4b94b98105c3af23c79bae02a132bfe66738392 /src/engine/sound.h | |
| parent | e45ad2a085d8f02aadc5d823a1d7dda4e1da70aa (diff) | |
| download | zcatch-1b2703aaba9ef21b8fca7c12b299fcd0fd4b9251.tar.gz zcatch-1b2703aaba9ef21b8fca7c12b299fcd0fd4b9251.zip | |
Refactoring & fixed WEAPONSPEC_GUN in content.py
Diffstat (limited to 'src/engine/sound.h')
| -rw-r--r-- | src/engine/sound.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/sound.h b/src/engine/sound.h index d14458e3..8f5dab24 100644 --- a/src/engine/sound.h +++ b/src/engine/sound.h @@ -18,12 +18,12 @@ public: virtual int LoadWV(const char *pFilename) = 0; - virtual void SetChannel(int ChannelId, float Volume, float Panning) = 0; + virtual void SetChannel(int ChannelID, float Volume, float Panning) = 0; virtual void SetListenerPos(float x, float y) = 0; - virtual int PlayAt(int ChannelId, int SoundId, int Flags, float x, float y) = 0; - virtual int Play(int ChannelId, int SoundId, int Flags) = 0; - virtual void Stop(int VoiceId) = 0; + virtual int PlayAt(int ChannelID, int SoundID, int Flags, float x, float y) = 0; + virtual int Play(int ChannelID, int SoundID, int Flags) = 0; + virtual void Stop(int VoiceID) = 0; virtual void StopAll() = 0; }; |