devilutionX/Source/utils/paths.h
2021-10-10 00:51:45 +02:00

22 lines
478 B
C++

#pragma once
#include <string>
namespace devilution {
namespace paths {
const std::string &AppPath();
const std::string &BasePath();
const std::string &PrefPath();
const std::string &ConfigPath();
const std::string &LangPath();
void SetBasePath(const std::string &path);
void SetPrefPath(const std::string &path);
void SetConfigPath(const std::string &path);
void SetLangPath(const std::string &path);
} // namespace paths
} // namespace devilution