mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
C++
26 lines
1.1 KiB
C++
#ifndef OPENMW_COMPONENTS_ESM3_FORMATVERSION_H
|
|
#define OPENMW_COMPONENTS_ESM3_FORMATVERSION_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace ESM
|
|
{
|
|
using FormatVersion = std::uint32_t;
|
|
|
|
inline constexpr FormatVersion DefaultFormatVersion = 0;
|
|
inline constexpr FormatVersion CurrentContentFormatVersion = 1;
|
|
inline constexpr FormatVersion MaxOldWeatherFormatVersion = 1;
|
|
inline constexpr FormatVersion MaxOldDeathAnimationFormatVersion = 2;
|
|
inline constexpr FormatVersion MaxOldForOfWarFormatVersion = 6;
|
|
inline constexpr FormatVersion MaxWerewolfDeprecatedDataFormatVersion = 7;
|
|
inline constexpr FormatVersion MaxOldTimeLeftFormatVersion = 8;
|
|
inline constexpr FormatVersion MaxIntFallbackFormatVersion = 10;
|
|
inline constexpr FormatVersion MaxClearModifiersFormatVersion = 16;
|
|
inline constexpr FormatVersion MaxOldAiPackageFormatVersion = 17;
|
|
inline constexpr FormatVersion MaxOldSkillsAndAttributesFormatVersion = 18;
|
|
inline constexpr FormatVersion MaxOldCreatureStatsFormatVersion = 19;
|
|
inline constexpr FormatVersion CurrentSaveGameFormatVersion = 22;
|
|
}
|
|
|
|
#endif
|