mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 22:19:07 +00:00
10 lines
231 B
C++
10 lines
231 B
C++
#ifndef LOCALIZATION_H
|
|
#define LOCALIZATION_H
|
|
|
|
#include "Base.h"
|
|
|
|
void setUsedLocale(const std::string& s);
|
|
std::string localisePath(const std::string &path, const std::string &modpath = "");
|
|
std::string getSystemLocale();
|
|
|
|
#endif
|