mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-23 19:11:05 +00:00
15 lines
214 B
C++
15 lines
214 B
C++
#include "ImageLoaderPNG.h"
|
|
|
|
#include <png.h>
|
|
|
|
ImageLoaderPNG::ImageLoaderPNG(const unsigned char *rawData)
|
|
: ImageLoader(rawData)
|
|
{
|
|
}
|
|
|
|
ImageLoaderPNG::~ImageLoaderPNG() {
|
|
}
|
|
|
|
void ImageLoaderPNG::ReadData() {
|
|
}
|