// Copyright (C) 2015-2015 ChaosForge Ltd // http://chaosforge.org/ // // This file is part of Nova libraries. // For conditions of distribution and use, see copying.txt file in root folder. /** * @file image_manager.hh * @author Kornel Kisielewicz * @brief image_manager */ #ifndef NV_ENGINE_IMAGE_MANAGER_HH #define NV_ENGINE_IMAGE_MANAGER_HH #include #include #include #include namespace nv { NV_RTTI_DECLARE_NAME( image_data, "image_data" ) class image_manager : public manual_resource_manager< image_data > { public: image_manager() {} protected: virtual bool load_resource( const string_view& id ); }; } #endif // NV_ENGINE_IMAGE_MANAGER_HH