1 // Aseprite UI Library
2 // Copyright (C) 2017  David Capello
3 //
4 // This file is released under the terms of the MIT license.
5 // Read LICENSE.txt for more information.
6 
7 #ifndef UI_SCALE_H_INCLUDED
8 #define UI_SCALE_H_INCLUDED
9 #pragma once
10 
11 namespace ui {
12 
13   // This value is a factor to multiply every screen size/coordinate.
14   // Every icon/graphics/font should be scaled to this factor.
15   int guiscale();
16 
17 } // namespace ui
18 
19 #endif
20