FasTC/IO/ImageLoaderPNG.cpp

15 lines
214 B
C++
Raw Normal View History

#include "ImageLoaderPNG.h"
#include <png.h>
ImageLoaderPNG::ImageLoaderPNG(const unsigned char *rawData)
: ImageLoader(rawData)
{
}
ImageLoaderPNG::~ImageLoaderPNG() {
}
void ImageLoaderPNG::ReadData() {
}