SilentPatch/SilentPatchSA/PNGFile.h

11 lines
207 B
C
Raw Normal View History

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