// prototypes for png texture code
#ifndef PNGTEX_H
#define PNGTEX_H

#include <string>

void loadPNG(std::string filename, int texUnit);
void dumpPNG(std::string filename, int x, int y, int w, int h);

#endif
