class EE::Window::DisplayMode

DisplayMode contains a display mode available to use.

#include <window.hpp>

class DisplayMode {
public:
    // fields

    Uint32 Width;
    Uint32 Height;
    Uint32 RefreshRate;
    Uint32 ScreenIndex;

    // construction

    DisplayMode(int width, int height, int refreshRate, int screenIndex);
};