feat(util): add CURRENT_REGION

This commit is contained in:
fallenoak 2025-10-03 23:38:41 -05:00
parent d9c85862d6
commit 99bc6f46f5
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#include "util/Locale.hpp"
WOW_LOCALE CURRENT_LANGUAGE = DEFAULT_LANGUAGE;
int32_t CURRENT_REGION = 0;

View File

@ -1,6 +1,8 @@
#ifndef UTIL_LOCALE_HPP
#define UTIL_LOCALE_HPP
#include <cstdint>
enum WOW_LOCALE {
LOCALE_en_US = 0,
LOCALE_ko_KR = 1,
@ -17,4 +19,6 @@ enum WOW_LOCALE {
extern WOW_LOCALE CURRENT_LANGUAGE;
extern int32_t CURRENT_REGION;
#endif