mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:19:55 +00:00
20 lines
350 B
C++
20 lines
350 B
C++
#ifndef GAME_SOUND_SOUND_H
|
|
#define GAME_SOUND_SOUND_H
|
|
|
|
namespace MWSound
|
|
{
|
|
class Sound
|
|
{
|
|
virtual void stop() = 0;
|
|
virtual bool isPlaying() = 0;
|
|
virtual void update(const float *pos) = 0;
|
|
|
|
public:
|
|
virtual ~Sound() { }
|
|
|
|
friend class OpenAL_Output;
|
|
friend class SoundManager;
|
|
};
|
|
}
|
|
|
|
#endif
|