SilentPatch/SilentPatch/PNGFile.h
Silent 4bdbdb5a6c lunar loads from an embedded PNG
Fixed cbuildings fadein with a shader
2014-06-06 14:59:16 +02:00

11 lines
No EOL
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