31aa613295
Renamed ScreenSelectMax* back to their old names Replaced all hard-coded transitions with TransitionBGAnimations
26 lines
529 B
C++
26 lines
529 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() : ScreenAttract("ScreenIntroMovie") { };
|
|
void Update( float fDelta );
|
|
|
|
};
|
|
|
|
|
|
|