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

26 lines
257 B
C++

#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