/* ----------------------------------------------------------------------------- Class: ScreenUnlock Desc: Base class for all attraction screens. Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved. Chris Danford Andrew Wong ----------------------------------------------------------------------------- */ #include "ScreenAttract.h" #include "Sprite.h" #include "BitmapText.h" class Course; class ScreenUnlock : public ScreenAttract { public: ScreenUnlock( CString sName ); ~ScreenUnlock(); protected: BitmapText PointsUntilNextUnlock; vector Unlocks; vector item; // scrolling text vector ItemIcons; // icons for scrolling text vector LastUnlocks; // used for "last few" method };