| 150 | } |
| 151 | |
| 152 | void ResourceManager::AddImage( const std::string& path, std::shared_ptr<const sf::Image> image ) { |
| 153 | m_images[path] = image; |
| 154 | } |
| 155 | |
| 156 | void ResourceManager::SetDefaultFont( std::shared_ptr<const sf::Font> font ) { |
| 157 | AddFont( "Default", font ); |
nothing calls this directly
no outgoing calls
no test coverage detected