This commit is contained in:
Paul 2000-10-10 16:49:01 +00:00
parent 2a65a60186
commit f9b956d088
5 changed files with 110 additions and 23 deletions

View file

@ -77,6 +77,13 @@ public:
MAX_VOLUME=255,
};
typedef enum REVERBTYPE
{
NONE,
ECHO_TEST,
NUM_REVERBTYPES,
};
// General
static void initialise();
@ -84,6 +91,9 @@ public:
static void think(int _frames);
// Reverb
static void setReverbType(REVERBTYPE _type);
// Song interface
static void setSong(SONGID _songId);
static void playSong();