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#ifdef HAVE_CONFIG_H
8#include "config.h"
9#endif
10
11#include "app/font_path.h"
12
13namespace app {
14
15void get_font_dirs(base::paths& fontDirs)
16{
17  // TODO use a Cocoa API to get the list of paths
18  fontDirs.push_back("~/Library/Fonts");
19  fontDirs.push_back("/Library/Fonts");
20  fontDirs.push_back("/System/Library/Fonts/");
21}
22
23} // namespace app
24