diff --git a/src/video/video_driver.hpp b/src/video/video_driver.hpp --- a/src/video/video_driver.hpp +++ b/src/video/video_driver.hpp @@ -150,6 +150,15 @@ public: virtual void EditBoxGainedFocus() {} /** + * Get a list of refresh rates of each available monitor. + * @return A vector of the refresh rates of all available monitors. + */ + virtual std::vector GetListOfMonitorRefreshRates() + { + return {}; + } + + /** * Get a suggested default GUI zoom taking screen DPI into account. */ virtual ZoomLevel GetSuggestedUIZoom()