Files
lime/project/include/graphics/PNG.h
2014-07-08 11:21:44 -07:00

23 lines
218 B
C++

#ifndef LIME_GRAPHICS_PNG_H
#define LIME_GRAPHICS_PNG_H
namespace lime {
class ImageData;
class PNG {
public:
static bool Decode (const char *path, ImageData *imageData);
};
}
#endif