31aa613295
Renamed ScreenSelectMax* back to their old names Replaced all hard-coded transitions with TransitionBGAnimations
23 lines
468 B
C++
23 lines
468 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:
|
|
ScreenWarning() : ScreenAttract("ScreenWarning") {};
|
|
};
|
|
|
|
|
|
|