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

#include <string>

void loadIMG(std::string filename, int texUnit);
void dumpIMG(std::string filename, int x, int y, int w, int h);

#endif

