mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-09 15:45:30 +00:00
15 lines
260 B
C
15 lines
260 B
C
|
#ifndef _IMAGE_LOADER_PNG_H_
|
||
|
#define _IMAGE_LOADER_PNG_H_
|
||
|
|
||
|
#include "ImageLoader.h"
|
||
|
|
||
|
class ImageLoaderPNG : public ImageLoader {
|
||
|
public:
|
||
|
ImageLoader(const unsigned char *rawData);
|
||
|
virtual ~ImageLoader();
|
||
|
|
||
|
void ReadData();
|
||
|
};
|
||
|
|
||
|
#endif // _IMAGE_LOADER_H_
|