mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-28 09:05:38 +00:00
e4fdd1e20d
As of this commit, the initial code cleanup and code documentation has been completed for the entire application.
24 lines
565 B
C++
24 lines
565 B
C++
//
|
|
// GuiVideoScreensaverOptions.h
|
|
//
|
|
// User interface for the video screensaver options.
|
|
// Submenu to GuiGeneralScreensaverOptions.
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef ES_APP_GUIS_GUI_VIDEO_SCREENSAVER_OPTIONS_H
|
|
#define ES_APP_GUIS_GUI_VIDEO_SCREENSAVER_OPTIONS_H
|
|
|
|
#include "GuiScreensaverOptions.h"
|
|
|
|
class GuiVideoScreensaverOptions : public GuiScreensaverOptions
|
|
{
|
|
public:
|
|
GuiVideoScreensaverOptions(Window* window, const char* title);
|
|
virtual ~GuiVideoScreensaverOptions();
|
|
|
|
void save() override;
|
|
};
|
|
|
|
#endif // ES_APP_GUIS_GUI_VIDEO_SCREENSAVER_OPTIONS_H
|