Files
itgmania212121/stepmania/src/ScreenInstructions.h
T

43 lines
1.1 KiB
C++
Raw Normal View History

#ifndef ScreenInstructions_H
#define ScreenInstructions_H
2002-12-02 05:25:44 +00:00
/*
-----------------------------------------------------------------------------
Class: ScreenInstructions
2002-12-02 05:25:44 +00:00
Desc: A grid of options, and the selected option is drawn with a highlight rectangle.
2002-12-02 05:25:44 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Screen.h"
#include "Sprite.h"
#include "RandomSample.h"
#include "TransitionInvisible.h"
#include "MenuElements.h"
class ScreenInstructions : public Screen
2002-12-02 05:25:44 +00:00
{
public:
ScreenInstructions();
virtual ~ScreenInstructions();
2002-12-02 05:25:44 +00:00
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
virtual void MenuBack( PlayerNumber pn );
virtual void MenuStart( PlayerNumber pn );
2002-12-02 05:25:44 +00:00
protected:
Sprite m_sprHowToPlay;
2002-12-02 05:25:44 +00:00
MenuElements m_Menu;
};
#endif