diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-17 13:43:44 +0100 |
---|---|---|
committer | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-17 13:44:03 +0100 |
commit | 20efe6984eb9ff9ac11dbb1c5d519c5134e7af60 (patch) | |
tree | c90408200bd803c17b853be5843f052434404028 /include/global.h | |
parent | 6c7eb48da494f41a53bf3305d1f75e398f9b97b4 (diff) |
Rename `charset` and use macro for build language
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index be35f1299..d23204760 100644 --- a/include/global.h +++ b/include/global.h @@ -29,6 +29,14 @@ enum VERSION_RUBY = 2, }; +enum LanguageId { + LANGUAGE_JAPANESE = 1, + LANGUAGE_ENGLISH = 2, + LANGUAGE_GERMAN = 5, +}; + +#define GAME_LANGUAGE (LANGUAGE_ENGLISH) + enum { MALE, |