mirror of https://github.com/aseprite/aseprite.git
				
				
				
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			354 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			354 B
		
	
	
	
		
			C++
		
	
	
	
| // Aseprite Document Library
 | |
| // Copyright (c) 2016 David Capello
 | |
| //
 | |
| // This file is released under the terms of the MIT license.
 | |
| // Read LICENSE.txt for more information.
 | |
| 
 | |
| #ifndef DOC_PIXEL_RATIO_H_INCLUDED
 | |
| #define DOC_PIXEL_RATIO_H_INCLUDED
 | |
| #pragma once
 | |
| 
 | |
| #include "gfx/size.h"
 | |
| 
 | |
| namespace doc {
 | |
| 
 | |
| typedef gfx::Size PixelRatio;
 | |
| 
 | |
| } // namespace doc
 | |
| 
 | |
| #endif
 |