2003-01-08 23:43:54 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Class: ScreenUnlock
|
|
|
|
|
|
|
|
|
|
Desc: Base class for all attraction screens.
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Chris Danford
|
2003-07-10 07:22:31 +00:00
|
|
|
Andrew Wong
|
2003-01-08 23:43:54 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#include "ScreenAttract.h"
|
2003-07-12 20:35:47 +00:00
|
|
|
#include "Sprite.h"
|
|
|
|
|
#include "BitmapText.h"
|
2003-05-09 05:56:05 +00:00
|
|
|
|
|
|
|
|
class Course;
|
2003-01-08 23:43:54 +00:00
|
|
|
|
|
|
|
|
class ScreenUnlock : public ScreenAttract
|
|
|
|
|
{
|
|
|
|
|
public:
|
2003-05-09 05:56:05 +00:00
|
|
|
ScreenUnlock();
|
2003-07-17 23:33:19 +00:00
|
|
|
|
2003-05-09 05:56:05 +00:00
|
|
|
protected:
|
|
|
|
|
BitmapText PointsUntilNextUnlock;
|
2003-07-16 14:03:40 +00:00
|
|
|
vector<Sprite*> Unlocks;
|
|
|
|
|
vector<BitmapText*> item; // scrolling text
|
|
|
|
|
vector<Sprite*> ItemIcons; // icons for scrolling text
|
2003-07-03 17:34:46 +00:00
|
|
|
};
|