MapFormat.h 513 B

123456789101112131415161718192021222324
  1. /*
  2. * MapFormat.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. enum class EMapFormat : uint8_t
  12. {
  13. INVALID = 0,
  14. // HEX DEC
  15. ROE = 0x0e, // 14
  16. AB = 0x15, // 21
  17. SOD = 0x1c, // 28
  18. // CHR = 0x1d, // 29 Heroes Chronicles, presumably - identical to SoD, untested
  19. HOTA = 0x20, // 32
  20. WOG = 0x33, // 51
  21. VCMI = 0x64
  22. };