/* * ResourceManager.h * * Created on: 22.07.2012 * Author: Felix */ #ifndef DG_RESOURCEMANAGER_H_ #define DG_RESOURCEMANAGER_H_ #include #include #include "Singleton.h" template class Singleton; /** * Loads and manages all resources by providing Singleton access to Thor ResourceManager. */ class ResourceManager : public thor::MultiResourceCache, public Singleton { // Private functions. private: friend class Singleton; ResourceManager() = default; }; #endif /* DG_RESOURCEMANAGER_H_ */