2021-01-17 13:36:38 +00:00
|
|
|
#ifndef PATHS_HPP
|
|
|
|
#define PATHS_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2021-07-01 19:45:19 +00:00
|
|
|
extern std::string prefixConfig;
|
2021-01-17 13:36:38 +00:00
|
|
|
extern std::string prefixCustom;
|
|
|
|
extern std::string prefixDefault;
|
|
|
|
|
|
|
|
void initPrefixes();
|
|
|
|
|
2021-07-02 16:19:14 +00:00
|
|
|
void makePaths();
|
|
|
|
|
2021-01-17 13:36:38 +00:00
|
|
|
std::string resolvePath(const char* path);
|
|
|
|
|
|
|
|
#endif
|