Files
itgmania212121/stepmania/src/ScreenCaution.h
T

36 lines
858 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"
#include "RandomSample.h"
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:
2002-05-27 18:36:01 +00:00
void MenuStart( const PlayerNumber p );
Sprite m_sprCaution;
TransitionFade m_Wipe;
2002-05-20 08:59:37 +00:00
};
#endif