SilentPatch/SAFix/PNGFile.h
2014-08-03 15:38:53 +02:00

11 lines
207 B
C++

#ifndef __PNGFILE
#define __PNGFILE
class CPNGFile
{
public:
static RwTexture* ReadFromFile(const char* pFileName);
static RwTexture* ReadFromMemory(const void* pMemory, unsigned int nLen);
};
#endif