Begin to stub in support for image data

This commit is contained in:
Joshua Granick
2014-06-13 10:58:15 -07:00
parent bd9d9902cd
commit 714357cbc0
14 changed files with 442 additions and 22 deletions

View File

@@ -0,0 +1,20 @@
#ifndef LIME_GRAPHICS_IMAGE_DATA_H
#define LIME_GRAPHICS_IMAGE_DATA_H
namespace lime {
struct ImageData {
int width;
int height;
unsigned char data;
};
}
#endif