This commit is contained in:
Glenn Maynard
2004-03-25 22:20:40 +00:00
parent 9d7f804e95
commit 0fd9e1f140
4 changed files with 0 additions and 23 deletions
-10
View File
@@ -80,15 +80,6 @@ ScreenDemonstration::ScreenDemonstration( CString sName ) : ScreenJukebox( sName
this->PostScreenMessage( SM_BeginFadingOut, SECONDS_TO_SHOW );
}
ScreenDemonstration::~ScreenDemonstration()
{
}
void ScreenDemonstration::Update( float fDeltaTime )
{
ScreenGameplay::Update( fDeltaTime );
}
void ScreenDemonstration::HandleScreenMessage( const ScreenMessage SM )
{
switch( SM )
@@ -105,7 +96,6 @@ void ScreenDemonstration::HandleScreenMessage( const ScreenMessage SM )
break;
case SM_LoseFocus:
LOG->Trace("XXX: lose foc");
SOUNDMAN->SetPrefs( PREFSMAN->m_fSoundVolume ); // turn volume back on
break;
-2
View File
@@ -16,9 +16,7 @@ class ScreenDemonstration : public ScreenJukebox
{
public:
ScreenDemonstration( CString sName );
~ScreenDemonstration();
virtual void Update( float fDeltaTime );
virtual void HandleScreenMessage( const ScreenMessage SM );
protected:
-9
View File
@@ -160,15 +160,6 @@ ScreenJukebox::ScreenJukebox( CString sName, bool bDemonstration ) : ScreenGamep
m_DancingState = STATE_DANCING;
}
ScreenJukebox::~ScreenJukebox()
{
}
void ScreenJukebox::Update( float fDeltaTime )
{
ScreenGameplay::Update( fDeltaTime );
}
void ScreenJukebox::Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI )
{
//LOG->Trace( "ScreenJukebox::Input()" );
-2
View File
@@ -19,9 +19,7 @@ class ScreenJukebox : public ScreenGameplay
{
public:
ScreenJukebox( CString sName, bool bDemonstration = false );
~ScreenJukebox();
virtual void Update( float fDeltaTime );
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );