mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-27 00:25:38 +00:00
22 lines
486 B
C++
22 lines
486 B
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation Desktop Edition
|
|
// GuiMediaViewerOptions.h
|
|
//
|
|
// User interface for the media viewer options.
|
|
// Submenu to the GuiMenu main menu.
|
|
//
|
|
|
|
#ifndef ES_APP_GUIS_GUI_MEDIA_VIEWER_OPTIONS_H
|
|
#define ES_APP_GUIS_GUI_MEDIA_VIEWER_OPTIONS_H
|
|
|
|
#include "guis/GuiSettings.h"
|
|
|
|
class GuiMediaViewerOptions : public GuiSettings
|
|
{
|
|
public:
|
|
GuiMediaViewerOptions(const std::string& title);
|
|
};
|
|
|
|
#endif // ES_APP_GUIS_GUI_MEDIA_VIEWER_OPTIONS_H
|