Files
itgmania212121/stepmania/src/ScreenWarning.h
T

27 lines
606 B
C++

/*
-----------------------------------------------------------------------------
Class: ScreenWarning
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 ScreenWarning : public ScreenAttract
{
public:
private:
virtual CString GetMetricName() { return "Warning"; }; // used to look up theme metrics
virtual CString GetElementName() { return "warning"; }; // used to look up theme elements
};