Begin to stub in support for image data
This commit is contained in:
20
project/include/graphics/ImageData.h
Normal file
20
project/include/graphics/ImageData.h
Normal 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
|
||||
Reference in New Issue
Block a user