Files
itgmania212121/stepmania/src/ScreenCenterImage.h
T

35 lines
930 B
C++

/*
-----------------------------------------------------------------------------
Class: ScreenCenterImage
Desc: Where the player maps device input to instrument buttons.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ScreenWithMenuElements.h"
#include "Sprite.h"
#include "BitmapText.h"
#include "PrefsManager.h"
#include "InputMapper.h"
#include "RageInputDevice.h"
class ScreenCenterImage : public ScreenWithMenuElements
{
public:
ScreenCenterImage( CString sName );
virtual ~ScreenCenterImage();
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
void DrawPrimitives();
private:
BitmapText m_textInstructions;
};