1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#include "MusicInterface.h"
#include "SexyAppBase.h"
using namespace Sexy;
MusicInterface::MusicInterface()
{
}
MusicInterface::~MusicInterface()
{
}
bool MusicInterface::LoadMusic(int theSongId, const std::string& theFileName)
{
return false;
}
void MusicInterface::PlayMusic(int theSongId, int theOffset, bool noLoop)
{
}
void MusicInterface::StopMusic(int theSongId)
{
}
void MusicInterface::PauseMusic(int theSongId)
{
}
void MusicInterface::ResumeMusic(int theSongId)
{
}
void MusicInterface::StopAllMusic()
{
}
void MusicInterface::UnloadMusic(int theSongId)
{
}
void MusicInterface::UnloadAllMusic()
{
}
void MusicInterface::PauseAllMusic()
{
}
void MusicInterface::ResumeAllMusic()
{
}
void MusicInterface::FadeIn(int theSongId, int theOffset, double theSpeed, bool noLoop)
{
}
void MusicInterface::FadeOut(int theSongId, bool stopSong, double theSpeed)
{
}
void MusicInterface::FadeOutAll(bool stopSong, double theSpeed)
{
}
void MusicInterface::SetSongVolume(int theSongId, double theVolume)
{
}
void MusicInterface::SetSongMaxVolume(int theSongId, double theMaxVolume)
{
}
bool MusicInterface::IsPlaying(int theSongId)
{
return false;
}
void MusicInterface::SetVolume(double theVolume)
{
}
void MusicInterface::SetMusicAmplify(int theSongId, double theAmp)
{
}
void MusicInterface::Update()
{
}
|