mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-28 09:05:38 +00:00
17 lines
409 B
C
17 lines
409 B
C
|
#ifndef _GUI_VIDEO_SCREENSAVER_OPTIONS_H_
|
||
|
#define _GUI_VIDEO_SCREENSAVER_OPTIONS_H_
|
||
|
|
||
|
#include "components/MenuComponent.h"
|
||
|
#include "GuiScreensaverOptions.h"
|
||
|
|
||
|
class GuiVideoScreensaverOptions : public GuiScreensaverOptions
|
||
|
{
|
||
|
public:
|
||
|
GuiVideoScreensaverOptions(Window* window, const char* title);
|
||
|
virtual ~GuiVideoScreensaverOptions();
|
||
|
|
||
|
void save() override;
|
||
|
};
|
||
|
|
||
|
#endif // _GUI_VIDEO_SCREENSAVER_OPTIONS_H_
|