1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 04:49:54 +00:00
openmw-tes3mp/apps/openmw/mwsound/sound.hpp

23 lines
351 B
C++
Raw Normal View History

2012-03-17 09:45:18 +00:00
#ifndef GAME_SOUND_SOUND_H
#define GAME_SOUND_SOUND_H
#include <string>
namespace MWSound
{
class Sound
{
virtual bool Play() = 0;
virtual void Stop() = 0;
virtual bool isPlaying() = 0;
public:
virtual ~Sound() { }
friend class OpenAL_Output;
friend class SoundManager;
};
}
#endif