Files
lime/project/include/graphics/format/PNG.h
2014-08-02 10:33:32 -07:00

26 lines
284 B
C++

#ifndef LIME_GRAPHICS_FORMAT_PNG_H
#define LIME_GRAPHICS_FORMAT_PNG_H
#include <graphics/ImageBuffer.h>
#include <utils/Resource.h>
namespace lime {
class PNG {
public:
static bool Decode (Resource *resource, ImageBuffer *imageBuffer);
};
}
#endif