49a5b67453
Added: More pump theme stuff Changed: Temporarily allowed Voodoo3 onto OGL renderer (DX looks horrid on my voodoo3 Bug?)
45 lines
961 B
C++
45 lines
961 B
C++
#ifndef MODESWITCHER_H
|
|
#define MODESWITCHER_H
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: ModeSwitcher
|
|
|
|
Desc: A ModeSwitcher for ScreenSelectMode
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Andrew Livy
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "ActorFrame.h"
|
|
#include "Banner.h"
|
|
#include "Sprite.h"
|
|
#include "ScrollingList.h"
|
|
#include "SongManager.h"
|
|
#include "BitmapText.h"
|
|
#include "SongManager.h"
|
|
#include "PlayerOptions.h"
|
|
#include "SongOptions.h"
|
|
#include "BitmapText.h"
|
|
|
|
class ModeSwitcher : public ActorFrame
|
|
{
|
|
public:
|
|
ModeSwitcher();
|
|
~ModeSwitcher();
|
|
void NextMode(int pn);
|
|
void PrevMode(int pn);
|
|
|
|
private:
|
|
BitmapText m_Stylename;
|
|
BitmapText m_Nextmode;
|
|
BitmapText m_Prevmode;
|
|
Sprite m_NextIcon;
|
|
Sprite m_PrevIcon;
|
|
CString GetStyleName();
|
|
CString GetNextStyleName();
|
|
CString GetPrevStyleName();
|
|
};
|
|
|
|
#endif
|