dungeon_crawler

view prototype/src/texman.h @ 17:d98240a13793

lalala
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 20 Aug 2012 06:11:58 +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_