music.h 140 B

12345678910
  1. #ifndef MUSIC_H_
  2. #define MUSIC_H_
  3. void play_music(const char* path);
  4. int music_playing();
  5. void toggle_music();
  6. int music_paused();
  7. #endif