mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 07:45:33 +00:00
22 lines
318 B
C++
22 lines
318 B
C++
|
#ifndef GAME_SOUND_SOUND_H
|
||
|
#define GAME_SOUND_SOUND_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace MWSound
|
||
|
{
|
||
|
class Sound
|
||
|
{
|
||
|
virtual void Stop() = 0;
|
||
|
virtual bool isPlaying() = 0;
|
||
|
|
||
|
public:
|
||
|
virtual ~Sound() { }
|
||
|
|
||
|
friend class OpenAL_Output;
|
||
|
friend class SoundManager;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|