#ifndef __SOUND_H
#define __SOUND_H

#include "lib/minifmod.h"

extern FMUSIC_MODULE *mod;

typedef struct 
{
	int length;
	int pos;
	unsigned char *data;
} MEMFILE;

void	SoundInit ();
void	SoundKill ();


#endif