]> git.jsancho.org Git - dungeon-master.git/blob - src/paths.h
2325eae09cd163d573115b09c4b388aa3f7ee647
[dungeon-master.git] / src / paths.h
1 /* Dungeon Master --- RPG Adventure Generator
2    Copyright © 2019 Javier Sancho <jsf@jsancho.org>
3
4    Dungeon Master is free software; you can redistribute it and/or modify it
5    under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    Dungeon Master is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with Dungeon Master. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #include <set>
19 #include <iostream>
20
21 #define PATH_DELIM "/"
22
23 #ifndef DATA_PATH
24 #define DATA_PATH ""
25 #endif
26
27 #ifndef PROGRAM_NAME
28 #define PROGRAM_NAME "dmaster"
29 #endif
30
31 std::set<std::string> get_data_paths();