PNGReader.h 163 B

12345678910
  1. #ifndef PNGREADER_H
  2. #define PNGREADER_H
  3. #include "common/utils/Types.h"
  4. namespace PNGReader {
  5. u32* load(const char* path, u32& width, u32& height);
  6. }
  7. #endif