dungeon_crawler

view prototype/src/texman.h @ 35:d0e93b4d9ec9

normal mapping
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 28 Aug 2012 06:28:22 +0300
parents
children
line source
1 #ifndef TEXMAN_H_
2 #define TEXMAN_H_
4 #include <string>
5 #include <map>
7 class TextureSet {
8 private:
9 mutable std::map<std::string, unsigned int> textures;
11 public:
12 ~TextureSet();
14 unsigned int get_texture(const char *fname) const;
15 };
17 #endif // TEXMAN_H_