1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 08:19:56 +00:00
openmw-tes3mp/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