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_