Files
itgmania212121/stepmania/src/ScreenLogo.h
T

27 lines
594 B
C++

/*
-----------------------------------------------------------------------------
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:
private:
virtual CString GetMetricName() { return "Logo"; }; // used to look up theme metrics
virtual CString GetElementName() { return "logo"; }; // used to look up theme elements
};