1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 15:29:55 +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 f0019cafaa
commit 18d6598565

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;