Consolodating description of source extraction in CHANGES.txt.

Extracted do_floodfill, playsound, draw_progressbar and RGB-to-linear functions.
This commit is contained in:
William Kendrick 2006-02-18 09:32:12 +00:00
parent a9511eda41
commit 7448cd879d
12 changed files with 780 additions and 505 deletions

13
src/playsound.h Normal file
View file

@ -0,0 +1,13 @@
#ifndef PLAYSOUND_H
#define PLAYSOUND_H
#include "SDL_mixer.h"
#include "sounds.h"
extern Mix_Chunk * sounds[NUM_SOUNDS];
extern int mute, use_sound;
void playsound(int chan, int s, int override);
#endif