24 lines
208 B
C++
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 |