From 6f07492c7bc9ee0bd39cba4b175fcb574e674f9b Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 8 Oct 2025 19:55:51 -0500 Subject: [PATCH] feat(world): add SMMapObjDef --- src/world/map/Types.hpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/world/map/Types.hpp diff --git a/src/world/map/Types.hpp b/src/world/map/Types.hpp new file mode 100644 index 0000000..ef7c62c --- /dev/null +++ b/src/world/map/Types.hpp @@ -0,0 +1,20 @@ +#ifndef WORLD_MAP_TYPES_HPP +#define WORLD_MAP_TYPES_HPP + +#include +#include +#include + +struct SMMapObjDef { + uint32_t nameId; + uint32_t uniqueId; + C3Vector pos; + C3Vector rot; + CAaBox extents; + uint16_t flags; + uint16_t doodadSet; + uint16_t nameSet; + uint16_t pad; +}; + +#endif