mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-11-21 21:12:29 +01:00
11 lines
207 B
C++
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 |