From 18d6598565e72bb73a654dd56ed3c44d34f79d76 Mon Sep 17 00:00:00 2001 From: Dave Corley Date: Sun, 26 Nov 2023 13:11:38 -0600 Subject: [PATCH] Feat(CS): Add enum for actual LAND flags --- components/esm3/loadland.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/esm3/loadland.hpp b/components/esm3/loadland.hpp index 1e0ec81ecf..5e6f67c521 100644 --- a/components/esm3/loadland.hpp +++ b/components/esm3/loadland.hpp @@ -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;