26 lines
257 B
C++
26 lines
257 B
C++
#ifndef LIME_MEDIA_FORMAT_PNG_H
|
|
#define LIME_MEDIA_FORMAT_PNG_H
|
|
|
|
|
|
#include <media/Image.h>
|
|
#include <utils/Resource.h>
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
class PNG {
|
|
|
|
|
|
public:
|
|
|
|
static bool Decode (Resource *resource, Image *image);
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |