1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-31 09:45:40 +00:00

Feat(CS): Add enum for actual LAND flags

This commit is contained in:
Dave Corley 2023-11-26 13:11:38 -06:00
parent cff0a26132
commit 068846d0cf

View file

@ -66,6 +66,13 @@ namespace ESM
DATA_VTEX = 16
};
enum
{
FLAG_HEIGHT = 1,
FLAG_COLOR = 2,
FLAG_TEXTURE = 4
};
// default height to use in case there is no Land record
static constexpr int DEFAULT_HEIGHT = -2048;