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

24 lines
207 B
C++

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