blob: beecb79e9779c5feb5f7475d43d239aa1d5d3c90 [file] [log] [blame]
/*
* Shader.hpp
*
* Created on: Jun 29, 2008
* Author: pete
*/
#ifndef SHADER_HPP_
#define SHADER_HPP_
#include <string>
#include <map>
#include "UserTexture.hpp"
class Shader
{
public:
std::map<std::string, UserTexture*> textures;
bool enabled;
std::string programSource;
Shader();
};
#endif /* SHADER_HPP_ */