mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 15:10:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			532 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			532 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <scwx/qt/types/font_types.hpp>
 | |
| 
 | |
| #include <vector>
 | |
| 
 | |
| #include <boost/gil/typedefs.hpp>
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace qt
 | |
| {
 | |
| namespace manager
 | |
| {
 | |
| namespace ResourceManager
 | |
| {
 | |
| 
 | |
| void Initialize();
 | |
| void Shutdown();
 | |
| 
 | |
| std::shared_ptr<boost::gil::rgba8_image_t>
 | |
| LoadImageResource(const std::string& urlString);
 | |
| std::vector<std::shared_ptr<boost::gil::rgba8_image_t>>
 | |
| LoadImageResources(const std::vector<std::string>& urlStrings);
 | |
| 
 | |
| } // namespace ResourceManager
 | |
| } // namespace manager
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
