Files
lime/project/include/graphics/PNG.h
Joshua Granick 84fbffa923 Minor refactor
2014-07-08 11:56:25 -07:00

24 lines
208 B
C++

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