facecam2d/src/paths.hpp
Epicalert b9c9cb3de4
Make .local and .config directories on startup
Directories for the config file and custom data will be created when
Facecam2D starts.
2021-07-03 00:19:14 +08:00

17 lines
249 B
C++

#ifndef PATHS_HPP
#define PATHS_HPP
#include <string>
extern std::string prefixConfig;
extern std::string prefixCustom;
extern std::string prefixDefault;
void initPrefixes();
void makePaths();
std::string resolvePath(const char* path);
#endif