feat(client): stub ClntObjMgrGetMapID

This commit is contained in:
fallenoak 2025-10-07 20:33:56 -05:00
parent 84cc18d904
commit 40656dd614
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
2 changed files with 14 additions and 0 deletions

6
src/client/ObjMgr.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "client/ObjMgr.hpp"
uint32_t ClntObjMgrGetMapID() {
// TODO
return -1;
}

8
src/client/ObjMgr.hpp Normal file
View File

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