| 
						
						
						
					 | 
					 | 
					@ -1,5 +1,6 @@ | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					#include <limits> // std::numeric_limits | 
					 | 
					 | 
					 | 
					#include <limits>  // std::numeric_limits | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					#include <string> // std::getline, std::stoi | 
					 | 
					 | 
					 | 
					#include <string>  // std::getline, std::stoi | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					#include <utility> // std::move | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					#include "inferno/assert.h" | 
					 | 
					 | 
					 | 
					#include "inferno/assert.h" | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					#include "inferno/io/file.h" | 
					 | 
					 | 
					 | 
					#include "inferno/io/file.h" | 
				
			
			
		
	
	
		
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
					 | 
					@ -10,6 +11,7 @@ | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					namespace Inferno { | 
					 | 
					 | 
					 | 
					namespace Inferno { | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
						Font::Font(const std::string& name) | 
					 | 
					 | 
					 | 
						Font::Font(const std::string& name) | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
							: m_name(std::move(name)) | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
						{ | 
					 | 
					 | 
					 | 
						{ | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
							std::string path = name + ".fnt"; | 
					 | 
					 | 
					 | 
							std::string path = name + ".fnt"; | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
							std::string image = name + ".png"; | 
					 | 
					 | 
					 | 
							std::string image = name + ".png"; | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					 | 
					
  |