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.
20 lines
454 B
20 lines
454 B
|
5 years ago
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
5 years ago
|
namespace devilution {
|
||
|
5 years ago
|
|
||
|
|
const std::string &GetBasePath();
|
||
|
|
const std::string &GetPrefPath();
|
||
|
5 years ago
|
const std::string &GetConfigPath();
|
||
|
5 years ago
|
const std::string &GetTtfPath();
|
||
|
|
const std::string &GetTtfName();
|
||
|
5 years ago
|
|
||
|
|
void SetBasePath(const char *path);
|
||
|
|
void SetPrefPath(const char *path);
|
||
|
5 years ago
|
void SetConfigPath(const char *path);
|
||
|
5 years ago
|
void SetTtfPath(const char *path);
|
||
|
|
void SetTtfName(const char *path);
|
||
|
5 years ago
|
|
||
|
5 years ago
|
} // namespace devilution
|