Files
lime/project/include/graphics/ImageData.h
2014-06-19 00:37:37 -07:00

20 lines
186 B
C++

#ifndef LIME_GRAPHICS_IMAGE_DATA_H
#define LIME_GRAPHICS_IMAGE_DATA_H
namespace lime {
struct ImageData {
int width;
int height;
unsigned char data;
};
}
#endif