35 lines
910 B
C++
35 lines
910 B
C++
#ifndef ScreenInstructions_H
|
|
#define ScreenInstructions_H
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: ScreenInstructions
|
|
|
|
Desc: A grid of options, and the selected option is drawn with a highlight rectangle.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
#include "ScreenWithMenuElements.h"
|
|
#include "Sprite.h"
|
|
#include "RandomSample.h"
|
|
|
|
class ScreenInstructions : public ScreenWithMenuElements
|
|
{
|
|
public:
|
|
ScreenInstructions( CString sName );
|
|
|
|
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
|
|
|
virtual void MenuBack( PlayerNumber pn );
|
|
virtual void MenuStart( PlayerNumber pn );
|
|
|
|
protected:
|
|
Sprite m_sprHowToPlay;
|
|
};
|
|
|
|
|
|
#endif
|