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.
25 lines
595 B
25 lines
595 B
#pragma once |
|
|
|
#include <string> |
|
|
|
namespace devilution { |
|
|
|
namespace paths { |
|
|
|
const std::string &BasePath(); |
|
const std::string &PrefPath(); |
|
const std::string &ConfigPath(); |
|
const std::string &LangPath(); |
|
const std::string &TtfPath(); |
|
const std::string &TtfName(); |
|
|
|
void SetBasePath(const std::string &path); |
|
void SetPrefPath(const std::string &path); |
|
void SetConfigPath(const std::string &path); |
|
void SetLangPath(const std::string &path); |
|
void SetTtfPath(const std::string &path); |
|
void SetTtfName(const std::string &name); |
|
|
|
} // namespace paths |
|
|
|
} // namespace devilution
|
|
|