currently plays sound when snake crashes (leaderboard shown) - shorten example audio file - Add sound.c: abstract function to play .wav files - config: - Add config option RENDER_GAME_TO_CONSOLE - disable debug output
11 lines
300 B
C
11 lines
300 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
//===========================
|
|
//======== playSound ========
|
|
//===========================
|
|
//abstract function that plays sound with provided path to .wav file
|
|
//wait parameter blocks program until playback finished
|
|
int playSound(const char * filePath, bool wait); |