From 72b41042223bfe31d70df8a71a50e4ba5d4f674d Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 23 Dec 2017 01:02:37 +0000 Subject: [Travis] Rebuilding documentation --- texturecache_8h_source.html | 156 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100644 texturecache_8h_source.html (limited to 'texturecache_8h_source.html') diff --git a/texturecache_8h_source.html b/texturecache_8h_source.html new file mode 100644 index 00000000..320a79cf --- /dev/null +++ b/texturecache_8h_source.html @@ -0,0 +1,156 @@ + + + + + + +YAGE: yage/core/texturecache.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
YAGE +  v0.1.3.0 +
+
Yet Another Game Engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
+ + +
+ +
+ +
+
+
texturecache.h
+
+
+Go to the documentation of this file.
1 
+
9 #ifndef TEXTURE_CACHE_H
+
10 #define TEXTURE_CACHE_H
+
11 
+
12 #include "texture.h"
+
13 
+
14 #include <unordered_map>
+
15 
+
16 namespace yage
+
17 {
+
18 
+ +
20 {
+
21 private:
+
22  std::unordered_map<std::string, Texture> texture_map_;
+
23 
+
24 public:
+
25  TextureCache() = default;
+
26 
+
27  Texture getTexture(const std::string &texture_path);
+ +
29 };
+
30 
+
31 } // namespace yage
+
32 
+
33 #endif
+
Texture getTexture(const std::string &texture_path)
Definition: texturecache.cpp:16
+
std::unordered_map< std::string, Texture > texture_map_
Definition: texturecache.h:22
+ +
TextureCache()=default
+
Definition: texture.h:17
+
Texture getTextureFromSpriteSheet()
+
Definition: texturecache.h:19
+
+
+ + + + -- cgit