uni

University stuff
git clone git://git.christosmarg.xyz/uni-assignments.git
Log | Files | Refs | README | LICENSE

audio.h (225B)


      1 #ifndef AUDIO_H
      2 #define AUDIO_H
      3 
      4 #include <SDL2/SDL.h>
      5 #include <SDL2/SDL_mixer.h>
      6 
      7 #define AUDIO_PATH "res/detective-8bit.wav"
      8 
      9 void *play_audio(void *tid);
     10 void volume		(char);
     11 void pause_audio(void);
     12 
     13 #endif /* AUDIO_H */