Files
itgmania212121/stepmania/src/ScreenGraphicOptions.h
T

33 lines
692 B
C++

/*
-----------------------------------------------------------------------------
Class: ScreenGraphicOptions
Desc: Change video-related options.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#ifndef SCREEN_GRAPHIC_OPTIONS_H
#define SCREEN_GRAPHIC_OPTIONS_H
#include "ScreenOptions.h"
class ScreenGraphicOptions : public ScreenOptions
{
public:
ScreenGraphicOptions();
private:
void UpdateRefreshRates();
void OnChange();
void ImportOptions();
void ExportOptions();
void GoToNextState();
void GoToPrevState();
int CurrentRefresh() const;
};
#endif