Files
itgmania212121/stepmania/src/ScreenUnlock.h
T

32 lines
747 B
C++
Raw Normal View History

/*
-----------------------------------------------------------------------------
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"
2003-07-12 20:35:47 +00:00
#include "Sprite.h"
#include "BitmapText.h"
class Course;
class ScreenUnlock : public ScreenAttract
{
public:
ScreenUnlock();
2003-08-03 14:29:12 +00:00
~ScreenUnlock();
2003-07-17 23:33:19 +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
vector<int> LastUnlocks; // used for "last few" method
2003-07-03 17:34:46 +00:00
};