Files
lime/project/include/system/Locale.h
2018-07-18 17:32:51 -07:00

24 lines
188 B
C++

#ifndef LIME_SYSTEM_LOCALE_H
#define LIME_SYSTEM_LOCALE_H
#include <string>
namespace lime {
class Locale {
public:
static std::string* GetSystemLocale ();
};
}
#endif