Add locale data class

This commit is contained in:
Vortrex
2022-07-15 05:57:18 -05:00
parent 5c5e2d027e
commit e6be6d7241

View File

@@ -8,6 +8,21 @@
// TYPE: Server (JavaScript)
// ===========================================================================
class LocaleData {
constructor() {
this.id = 0;
this.name = "";
this.englishName = "";
this.stringsFile = "";
this.flagImagePath = "";
this.contributors = "";
this.countries = [];
this.requiresUnicode = false;
}
}
// ===========================================================================
function initLocaleScript() {
logToConsole(LOG_INFO, "[VRR.Locale]: Initializing locale script ...");
logToConsole(LOG_INFO, "[VRR.Locale]: Locale script initialized!");