feat(object): move ClntObjMgr functions to object

This commit is contained in:
fallenoak 2026-01-05 17:05:53 -06:00
parent 8700146b85
commit 4755595eec
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
5 changed files with 17 additions and 10 deletions

View File

@ -1,7 +1,7 @@
#include "client/ClientHandlers.hpp"
#include "client/ObjMgr.hpp"
#include "console/Console.hpp"
#include "db/Db.hpp"
#include "object/Client.hpp"
#include "world/World.hpp"
#include <common/DataStore.hpp>
#include <tempest/Vector.hpp>

View File

@ -1,8 +0,0 @@
#ifndef CLIENT_OBJ_MGR_HPP
#define CLIENT_OBJ_MGR_HPP
#include <cstdint>
uint32_t ClntObjMgrGetMapID();
#endif

7
src/object/Client.hpp Normal file
View File

@ -0,0 +1,7 @@
#ifndef OBJECT_CLIENT_HPP
#define OBJECT_CLIENT_HPP
#include "client/ObjMgr.hpp"
#include "object/Types.hpp"
#endif

View File

@ -1,4 +1,4 @@
#include "client/ObjMgr.hpp"
#include "object/client/ObjMgr.hpp"
uint32_t ClntObjMgrGetMapID() {
// TODO

View File

@ -0,0 +1,8 @@
#ifndef OBJECT_CLIENT_CLIENT_OBJ_MGR_HPP
#define OBJECT_CLIENT_CLIENT_OBJ_MGR_HPP
#include <cstdint>
uint32_t ClntObjMgrGetMapID();
#endif