Files
itgmania212121/stepmania/src/ScreenLogo.h
T

30 lines
503 B
C++
Raw Normal View History

#ifndef SCREENLOGO_H
#define SCREENLOGO_H
/*
-----------------------------------------------------------------------------
Class: ScreenLogo
2003-01-26 20:49:05 +00:00
Desc:
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ScreenAttract.h"
2003-07-12 20:36:26 +00:00
#include "Sprite.h"
class ScreenLogo : public ScreenAttract
{
public:
2003-09-27 22:30:51 +00:00
ScreenLogo( CString sName );
2003-01-19 04:44:22 +00:00
protected:
Sprite m_sprLogo;
};
2003-02-16 04:56:36 +00:00
#endif