Initial commit
This commit is contained in:
26
SoundHandler.h
Normal file
26
SoundHandler.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#include <AL/al.h>
|
||||
|
||||
extern "C"
|
||||
{
|
||||
#include "Sound.h"
|
||||
};
|
||||
|
||||
class SoundHandler
|
||||
{
|
||||
public:
|
||||
bool playMusic(const char filename[], bool loop)
|
||||
{
|
||||
music = loadSound(filename);
|
||||
playSound(0, loop, music);
|
||||
}
|
||||
|
||||
bool playSoundEffect(const char filename[], bool loop)
|
||||
{
|
||||
music = loadSound(filename);
|
||||
playSound(1, loop, music);
|
||||
}
|
||||
|
||||
private:
|
||||
ALuint music;
|
||||
ALuint soundEffect;
|
||||
};
|
||||
Reference in New Issue
Block a user