#ifndef PNGLOADER_H__ #define PNGLOADER_H__ #include "../client/renderer/TextureData.h" #include /// Decode a PNG (from memory) into a TextureData. /// Returns an empty TextureData on failure. TextureData loadPngFromMemory(const unsigned char* data, size_t size); #endif // PNGLOADER_H__