mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-24 10:05:39 +01:00
15 lines
274 B
C++
15 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_
|