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,26 @@
#ifndef LIME_GRAPHICS_PNG_H
#define LIME_GRAPHICS_PNG_H
#include <graphics/ImageData.h>
#include <utils/ByteArray.h>
namespace lime {
class PNG {
public:
static void Decode (ByteArray bytes, value imageData);
};
}
#endif