1 | // Aseprite |
---|---|
2 | // Copyright (C) 2017-2018 David Capello |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifndef APP_FONT_PATH_H_INCLUDED |
8 | #define APP_FONT_PATH_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include "base/paths.h" |
12 | |
13 | #include <string> |
14 | |
15 | namespace app { |
16 | |
17 | void get_font_dirs(base::paths& fontDirs); |
18 | std::string find_font(const std::string& firstDir, |
19 | const std::string& filename); |
20 | |
21 | } // namespace app |
22 | |
23 | #endif |
24 |