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:
parent
f0019cafaa
commit
18d6598565
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue