blob: d460382479aac16ab85cf0d2e63f314eaf6b8e7d [file] [log] [blame]
/*
* UserTexture.hpp
*
* Created on: Jul 16, 2008
* Author: pete
*/
#ifndef USERTEXTURE_HPP_
#define USERTEXTURE_HPP_
#include <string>
class UserTexture
{
public:
bool wrap;
bool bilinear;
bool texsizeDefined;
int width;
int height;
unsigned int texID;
std::string qname;
std::string name;
UserTexture(std::string qualifiedName);
virtual ~UserTexture();
};
#endif /* USERTEXTURE_HPP_ */