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

25 lines
199 B
C++

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