Files
itgmania212121/stepmania/src/ScreenCaution.h
T

40 lines
983 B
C++
Raw Normal View History

#ifndef SCREENCAUTION_H
#define SCREENCAUTION_H 1
2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
Class: ScreenCaution
2002-05-20 08:59:37 +00:00
Desc: Screen that displays while SelectSong is being loaded.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
2002-05-20 08:59:37 +00:00
-----------------------------------------------------------------------------
*/
#include "Screen.h"
#include "TransitionFade.h"
2002-08-20 07:58:19 +00:00
#include "TransitionFadeWipe.h"
2002-05-20 08:59:37 +00:00
#include "RandomSample.h"
2002-09-29 05:06:18 +00:00
#include "BGAnimation.h"
2002-05-20 08:59:37 +00:00
class ScreenCaution : public Screen
{
public:
ScreenCaution();
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
protected:
void MenuStart( PlayerNumber pn );
void MenuBack( PlayerNumber pn );
2002-09-29 05:06:18 +00:00
BGAnimation m_Background;
TransitionFade m_Wipe;
2002-08-20 07:58:19 +00:00
TransitionFadeWipe m_FadeWipe;
2002-05-20 08:59:37 +00:00
};
#endif