//Code by: Ne0v001
//http://s7.invisionfree.com/Ne0v001_Game/
//ne0v001@yahoo.com
//commands I have made based on FMOD's system
//in other words, simplified, bish
//version 0.1.1.4
#ifndef _SOUNDSYS_
#define _SOUNDSYS_
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#if defined(WIN32) || defined(_WIN64) || defined(__WATCOMC__)
#include <windows.h>
#include <conio.h>
#else
#include "../../api/inc/wincompat.h"
#endif
#include "fmod.h"
#include "fmod_errors.h" /* optional */
//this file allows for playing .mp3 and .ogg files
//at the bottom is for playing .wav files
class sounds {
public:
FSOUND_STREAM *stream;
int channel;
char filename[70];
};
void PlayMusic(char * filename);
void MusicOff();
#endif