Files
itgmania212121/stepmania/src/TransitionKeepAlive.h
T

40 lines
957 B
C++
Raw Normal View History

/*
-----------------------------------------------------------------------------
2002-04-01 02:04:43 +00:00
Class: TransitionKeepAlive
2002-04-01 02:04:43 +00:00
Desc: The transition between menu screens. "Let's Move On"
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
-----------------------------------------------------------------------------
*/
#ifndef _TransitionKeepAlive_H_
#define _TransitionKeepAlive_H_
#include "Sprite.h"
#include "TransitionFadeWipe.h"
class TransitionKeepAlive : public Transition
{
public:
TransitionKeepAlive();
virtual void Update( float fDeltaTime );
2002-05-19 01:59:48 +00:00
virtual void DrawPrimitives();
2002-05-19 01:59:48 +00:00
virtual void OpenWipingRight( ScreenMessage send_when_done = SM_None );
virtual void OpenWipingLeft( ScreenMessage send_when_done = SM_None );
virtual void CloseWipingRight(ScreenMessage send_when_done = SM_None );
virtual void CloseWipingLeft( ScreenMessage send_when_done = SM_None );
2002-05-01 19:14:55 +00:00
protected:
Sprite m_sprLogo;
2002-05-19 01:59:48 +00:00
Quad m_rect;
};
#endif