1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-13 06:37:57 +00:00
OpenMW/apps/openmw/mwsound/sound.hpp

21 lines
350 B
C++
Raw Normal View History

2012-03-17 09:45:18 +00:00
#ifndef GAME_SOUND_SOUND_H
#define GAME_SOUND_SOUND_H
namespace MWSound
{
class Sound
{
virtual void stop() = 0;
2012-03-17 09:45:18 +00:00
virtual bool isPlaying() = 0;
virtual void update(const float *pos) = 0;
2012-03-17 09:45:18 +00:00
public:
virtual ~Sound() { }
friend class OpenAL_Output;
friend class SoundManager;
};
}
#endif