1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-02 09:02:03 +02:00
vcmi/lib/mapping/MapFormat.h

29 lines
502 B
C++
Raw Normal View History

2023-05-24 00:14:06 +02:00
/*
* MapFormat.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
2023-05-24 01:12:25 +02:00
VCMI_LIB_NAMESPACE_BEGIN
2023-05-24 00:14:06 +02:00
enum class EMapFormat : uint8_t
{
INVALID = 0,
// HEX DEC
ROE = 0x0e, // 14
AB = 0x15, // 21
SOD = 0x1c, // 28
2024-08-31 12:39:23 +02:00
CHR = 0x1d, // 29
2023-05-24 00:14:06 +02:00
HOTA = 0x20, // 32
WOG = 0x33, // 51
VCMI = 0x64
};
2023-05-24 01:12:25 +02:00
VCMI_LIB_NAMESPACE_END