Files
lime/project/include/system/DisplayMode.h
Joshua Granick 58057a4457 Cleanup imports
2018-06-11 14:19:37 -07:00

33 lines
454 B
C++

#ifndef LIME_SYSTEM_DISPLAY_MODE_H
#define LIME_SYSTEM_DISPLAY_MODE_H
#include <graphics/PixelFormat.h>
#include <system/CFFI.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