Files
itgmania212121/stepmania/src/ScreenCaution.h
T

40 lines
947 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 "RandomSample.h"
2002-09-29 05:06:18 +00:00
#include "BGAnimation.h"
2003-04-13 01:09:19 +00:00
#include "Transition.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;
2003-04-13 01:09:19 +00:00
Transition m_In;
Transition m_Out;
Transition m_Back;
2002-05-20 08:59:37 +00:00
};
#endif