summaryrefslogtreecommitdiff
path: root/src/speaker.c
blob: b4bef73939ca7e05f1225421119c9da6759869b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "speaker.h"

Sound s;

void SpeakerInit(){
  InitAudioDevice();              // Initialize audio device
  s=LoadSound(SPEAKER_AUDIO_FILE);
}

void SpeakerOn(){
  PlaySound(s);
}

void SpeakerOff(){
  StopSound(s);
}

void SpeakerFinish(){
  CloseAudioDevice();
}