mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-23 22:11:03 +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() {
|
||
|
}
|