mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-26 08:17:55 +00:00
14 lines
274 B
C++
14 lines
274 B
C++
#ifndef _IMAGE_LOADER_PNG_H_
|
|
#define _IMAGE_LOADER_PNG_H_
|
|
|
|
#include "ImageLoader.h"
|
|
|
|
class ImageLoaderPNG : public ImageLoader {
|
|
public:
|
|
ImageLoaderPNG(const unsigned char *rawData);
|
|
virtual ~ImageLoaderPNG();
|
|
|
|
virtual void ReadData();
|
|
};
|
|
|
|
#endif // _IMAGE_LOADER_H_
|