summaryrefslogtreecommitdiff
path: root/texturepng.h
blob: 9236d392e44c198f90c0d3caab3e28b1f2ac338f (plain)
1
2
3
4
5
6
7
8
#ifndef _TEXTUREPNG_H_
#define _TEXTUREPNG_H_
#include "texture.h"
class TexturePNG : public Texture {
	public:
		TexturePNG(const char* filename);
};
#endif // _TEXTUREPNG_H_