//---------------------------------------------------------------------- // Fake Voice Sound Signal // author: JJ Ventrella // THIS IS A TEMPORARY FILE FOR DEVELOPMENT PURPOSES ONLY //---------------------------------------------------------------------- #include "llviewerprecompiledheaders.h" #include "fakevoicesoundsignal.h" //----------------------------------------------- // constructor //----------------------------------------------- FakeVoiceSoundSignal::FakeVoiceSoundSignal() { }//--------------------------------------------------- //----------------------------------------------- // destructor //----------------------------------------------- FakeVoiceSoundSignal::~FakeVoiceSoundSignal() { }//--------------------------------------------------- //--------------------------------------------------- F32 FakeVoiceSoundSignal::getAmplitude() { return 0.0; }//--------------------------------------------------- //--------------------------------------------------- bool FakeVoiceSoundSignal::getActive() { return false; }//--------------------------------------------------- //--------------------------------------------------- void FakeVoiceSoundSignal::update() { }//---------------------------------------------------