forked from cataclysmbnteam/Cataclysm-BN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
path_info.h
76 lines (68 loc) · 1.93 KB
/
path_info.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#pragma once
#ifndef CATA_SRC_PATH_INFO_H
#define CATA_SRC_PATH_INFO_H
#include <string>
enum class holiday : int;
namespace PATH_INFO
{
void init_base_path( std::string path );
void init_user_dir( std::string dir );
void set_standard_filenames();
std::string autopickup();
std::string base_colors();
std::string base_path();
std::string colors();
std::string color_templates();
std::string config_dir();
std::string custom_colors();
std::string datadir();
std::string debug();
std::string defaultsounddir();
std::string defaulttilejson();
std::string defaulttilepng();
std::string fontconfig();
std::string user_fontconfig();
std::string fontdir();
std::string user_fontdir();
std::string language_defs_file();
std::string graveyarddir();
std::string help();
std::string keybindingsdir();
std::string main_menu_tips();
std::string lastworld();
std::string memorialdir();
std::string moddir();
std::string options();
std::string panel_options();
std::string safemode();
std::string distraction();
std::string savedir();
std::string sokoban();
std::string templatedir();
std::string user_dir();
std::string user_keybindings();
std::string user_moddir();
std::string worldoptions();
std::string crash();
std::string tileset_conf();
std::string gfxdir();
std::string user_gfx();
std::string data_sound();
std::string user_sound();
std::string mods_replacements();
std::string mods_dev_default();
std::string mods_user_default();
std::string soundpack_conf();
std::string credits();
std::string motd();
std::string title( holiday current_holiday );
std::string names();
void set_datadir( const std::string &datadir );
void set_config_dir( const std::string &config_dir );
void set_savedir( const std::string &savedir );
void set_memorialdir( const std::string &memorialdir );
void set_options( const std::string &options );
void set_autopickup( const std::string &autopickup );
void set_motd( const std::string &motd );
} // namespace PATH_INFO
#endif // CATA_SRC_PATH_INFO_H