NEW FEATURE: added autogen icon to select music NEW FEATURE: toggle for easter eggs in Machine Options NEW FEATURE: marvelous step timing togglable in Machine Options NEW FEATURE: Grade AAAA (all marvelous) CHANGE: Only show ScreenHowToPlay if at least one player chose easy
35 lines
765 B
C++
35 lines
765 B
C++
#ifndef SCREENLOGO_H
|
|
#define SCREENLOGO_H
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: ScreenLogo
|
|
|
|
Desc: Base class for all attraction screens.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "ScreenAttract.h"
|
|
|
|
|
|
class ScreenLogo : public ScreenAttract
|
|
{
|
|
public:
|
|
ScreenLogo();
|
|
|
|
virtual void FirstUpdate();
|
|
|
|
private:
|
|
virtual CString GetMetricName() { return "Logo"; }; // used to look up theme metrics
|
|
virtual CString GetElementName() { return "logo"; }; // used to look up theme elements
|
|
|
|
Sprite m_sprLogo;
|
|
BitmapText m_textVersion;
|
|
BitmapText m_textSongs;
|
|
};
|
|
|
|
|
|
|
|
#endif |