whoa/src/object/client/ObjMgr.hpp
2026-01-06 22:50:11 -06:00

20 lines
345 B
C++

#ifndef OBJECT_CLIENT_OBJ_MGR_HPP
#define OBJECT_CLIENT_OBJ_MGR_HPP
#include "object/client/ClntObjMgr.hpp"
#include <cstdint>
ClntObjMgr* ClntObjMgrGetCurrent();
uint32_t ClntObjMgrGetMapID();
void ClntObjMgrInitializeStd(uint32_t mapID);
void ClntObjMgrPop();
void ClntObjMgrPush(ClntObjMgr* mgr);
void ClntObjMgrSetHandlers();
#endif