Files
lime/project/include/system/DisplayMode.h

33 lines
450 B
C++

#ifndef LIME_SYSTEM_DISPLAY_MODE_H
#define LIME_SYSTEM_DISPLAY_MODE_H
#include <hx/CFFI.h>
#include <graphics/PixelFormat.h>
namespace lime {
class DisplayMode {
public:
DisplayMode ();
DisplayMode (value DisplayMode);
DisplayMode (int width, int height, PixelFormat pixelFormat, int refreshRate);
value Value ();
int height;
PixelFormat pixelFormat;
int refreshRate;
int width;
};
}
#endif