YAGE  v0.1.3.0
Yet Another Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
resourcemanager.h
Go to the documentation of this file.
1 
17 #ifndef RESOURCE_MANAGER_H
18 #define RESOURCE_MANAGER_H
19 
20 #include "texturecache.h"
21 
22 #include <string>
23 
24 namespace yage
25 {
26 
27 class Texture;
28 
30 {
31 private:
33 
34 public:
35  static Texture getTexture(const std::string &texture_path);
36 };
37 
38 } // namespace yage
39 
40 #endif
static TextureCache texture_cache_
Definition: resourcemanager.h:32
Definition: resourcemanager.h:29
static Texture getTexture(const std::string &texture_path)
Definition: resourcemanager.cpp:17
Definition: texture.h:17
Definition: texturecache.h:19