isaac-typescript-definitions
Version:
TypeScript definitions for The Binding of Isaac: Repentance.
15 lines (14 loc) • 646 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.LanguageAbbreviation = void 0;
/** Listed in order of how they cycle through the options menu. */
var LanguageAbbreviation;
(function (LanguageAbbreviation) {
LanguageAbbreviation["ENGLISH"] = "en";
LanguageAbbreviation["JAPANESE"] = "jp";
LanguageAbbreviation["SPANISH"] = "es";
LanguageAbbreviation["GERMAN"] = "de";
LanguageAbbreviation["RUSSIAN"] = "ru";
LanguageAbbreviation["KOREAN"] = "kr";
LanguageAbbreviation["CHINESE_SIMPLE"] = "zh";
})(LanguageAbbreviation || (exports.LanguageAbbreviation = LanguageAbbreviation = {}));
;