You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
451 B
21 lines
451 B
#pragma once |
|
|
|
#include <string> |
|
|
|
namespace devilution { |
|
|
|
namespace paths { |
|
|
|
const std::string &BasePath(); |
|
const std::string &PrefPath(); |
|
const std::string &ConfigPath(); |
|
const std::string &AssetsPath(); |
|
|
|
void SetBasePath(const std::string &path); |
|
void SetPrefPath(const std::string &path); |
|
void SetConfigPath(const std::string &path); |
|
void SetAssetsPath(const std::string &path); |
|
|
|
} // namespace paths |
|
|
|
} // namespace devilution
|
|
|