36 lines
719 B
C++
36 lines
719 B
C++
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: ScreenOptionsMenu
|
|
|
|
Desc: Select a theme and announcer.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "Screen.h"
|
|
#include "ScreenOptions.h"
|
|
#include "Sprite.h"
|
|
#include "BitmapText.h"
|
|
#include "RandomSample.h"
|
|
#include "TransitionFade.h"
|
|
#include "Quad.h"
|
|
|
|
|
|
class ScreenOptionsMenu : public ScreenOptions
|
|
{
|
|
public:
|
|
ScreenOptionsMenu();
|
|
|
|
protected:
|
|
void MenuStart( PlayerNumber pn );
|
|
|
|
private:
|
|
void ImportOptions();
|
|
void ExportOptions();
|
|
|
|
void GoToNextState();
|
|
void GoToPrevState();
|
|
};
|