Initial implemention of lime.system.Locale

This commit is contained in:
Joshua Granick
2016-09-02 14:17:28 -07:00
parent 87573bb261
commit 8502635421
5 changed files with 229 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
#ifndef LIME_SYSTEM_LOCALE_H
#define LIME_SYSTEM_LOCALE_H
namespace lime {
class Locale {
public:
static char* GetSystemLocale ();
};
}
#endif