32 lines
668 B
C++
32 lines
668 B
C++
/*
|
|
-----------------------------------------------------------------------------
|
|
File: ScreenSelectGame.h
|
|
|
|
Desc: Select a song.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "Screen.h"
|
|
#include "ScreenOptions.h"
|
|
#include "Sprite.h"
|
|
#include "BitmapText.h"
|
|
#include "RandomSample.h"
|
|
#include "TransitionFade.h"
|
|
#include "Quad.h"
|
|
#include "AnnouncerManager.h"
|
|
|
|
class ScreenSelectGame : public ScreenOptions
|
|
{
|
|
public:
|
|
ScreenSelectGame();
|
|
|
|
private:
|
|
void ImportOptions();
|
|
void ExportOptions();
|
|
|
|
void GoToNextState();
|
|
void GoToPrevState();
|
|
};
|