From 0b8a907d1f99b20cc789806ff70394a18cbea1d9 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 13 Aug 2017 17:38:57 +0100 Subject: Updating docs --- resourcemanager_8hpp_source.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'resourcemanager_8hpp_source.html') diff --git a/resourcemanager_8hpp_source.html b/resourcemanager_8hpp_source.html index 9efa7025..c7ba8148 100644 --- a/resourcemanager_8hpp_source.html +++ b/resourcemanager_8hpp_source.html @@ -68,11 +68,11 @@ $(function() {
resourcemanager.hpp
-
1 /* ----------------------------------------------------------------------------
2  * resourcemanager.hpp
3  *
4  * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
5  * See file LICENSE for more details
6  * ----------------------------------------------------------------------------
7  */
8 
9 #ifndef RESOURCE_MANAGER_HPP
10 #define RESOURCE_MANAGER_HPP
11 
12 #include "texture.hpp"
13 #include "texturecache.hpp"
14 
15 #include <string>
16 
17 namespace yage
18 {
19 
20 class ResourceManager
21 {
22 private:
23  static TextureCache texture_cache_;
24 public:
25  static Texture getTexture(const std::string &texture_path);
26 };
27 
28 } // yage
29 
30 #endif
Definition: camera2d.hpp:17
+
1 /* ----------------------------------------------------------------------------
2  * resourcemanager.hpp
3  *
4  * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
5  * See file LICENSE for more details
6  * ----------------------------------------------------------------------------
7  */
8 
9 #ifndef RESOURCE_MANAGER_HPP
10 #define RESOURCE_MANAGER_HPP
11 
12 #include "texture.hpp"
13 #include "texturecache.hpp"
14 
15 #include <string>
16 
17 namespace yage {
18 
19 class ResourceManager {
20 private:
21  static TextureCache texture_cache_;
22 
23 public:
24  static Texture getTexture(const std::string& texture_path);
25 };
26 
27 } // yage
28 
29 #endif
Definition: camera2d.hpp:17
-- cgit