Files
itgmania212121/stepmania/src/ModeSwitcher.h
T
Andrew Livy 49a5b67453 Added: SelectMode, allows players to cycle between double/halfdouble/single on pump song select screen. Todo: Make it work for versus/make it more 'metricable'
Added: More pump theme stuff
Changed: Temporarily allowed Voodoo3 onto OGL renderer (DX looks horrid on my voodoo3 Bug?)
2003-06-02 11:31:13 +00:00

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