#ifndef OPENMW_COMPONENTS_SETTINGS_SCREENSHOTSETTINGS_H #define OPENMW_COMPONENTS_SETTINGS_SCREENSHOTSETTINGS_H #include #include namespace Settings { enum class ScreenshotType { Regular, Cylindrical, Spherical, Planet, Cubemap, }; struct ScreenshotSettings { ScreenshotType mType; std::optional mWidth; std::optional mHeight; std::optional mCubeSize; auto operator<=>(const ScreenshotSettings& value) const = default; }; } #endif