From 536c94a7b71c6e98324a9641a68a148993d0d2ac Mon Sep 17 00:00:00 2001 From: fallenoak Date: Tue, 20 Jan 2026 20:56:21 -0600 Subject: [PATCH] feat(world): add HWORLDOBJECT --- src/world/Types.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/world/Types.hpp diff --git a/src/world/Types.hpp b/src/world/Types.hpp new file mode 100644 index 0000000..529e5fb --- /dev/null +++ b/src/world/Types.hpp @@ -0,0 +1,8 @@ +#ifndef WORLD_TYPES_HPP +#define WORLD_TYPES_HPP + +#include + +typedef uintptr_t HWORLDOBJECT; + +#endif