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

24 lines
210 B
C++

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