feat(world): add SMMapObjDef

This commit is contained in:
fallenoak 2025-10-08 19:55:51 -05:00
parent b832afce84
commit 6f07492c7b
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

20
src/world/map/Types.hpp Normal file
View File

@ -0,0 +1,20 @@
#ifndef WORLD_MAP_TYPES_HPP
#define WORLD_MAP_TYPES_HPP
#include <tempest/Box.hpp>
#include <tempest/Vector.hpp>
#include <cstdint>
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