Language Defines.h 349 B

123456789101112131415161718192021
  1. #ifndef __LANGUAGE_DEFINES_H
  2. #define __LANGUAGE_DEFINES_H
  3. //ONLY ONE OF THESE CAN BE DEFINED AT A TIME!
  4. #define ENGLISH
  5. //#define GERMAN
  6. //#define RUSSIAN
  7. //#define DUTCH
  8. //#define POLISH
  9. #define BLOOD_N_GORE_ENABLED
  10. //if the language represents words as single chars
  11. #ifdef TAIWAN
  12. #define SINGLE_CHAR_WORDS
  13. #endif
  14. #endif