mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-16 06:29:31 +00:00
11 lines
231 B
C
11 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
|