Files
itgmania212121/stepmania/src/ScreenIntroMovie.h
T
2003-09-27 22:30:51 +00:00

26 lines
533 B
C++

/*
-----------------------------------------------------------------------------
Class: ScreenIntroMovie
Desc: Base class for all attraction screens.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
Kevin Slaughter
-----------------------------------------------------------------------------
*/
#include "ScreenAttract.h"
class ScreenIntroMovie : public ScreenAttract
{
public:
ScreenIntroMovie( CString sName ) : ScreenAttract( sName ) { };
void Update( float fDelta );
};