mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
18 lines
308 B
C++
18 lines
308 B
C++
#ifndef OBJECT_CLIENT_OBJ_MGR_HPP
|
|
#define OBJECT_CLIENT_OBJ_MGR_HPP
|
|
|
|
#include "object/client/ClntObjMgr.hpp"
|
|
#include <cstdint>
|
|
|
|
uint32_t ClntObjMgrGetMapID();
|
|
|
|
void ClntObjMgrInitializeStd(uint32_t mapID);
|
|
|
|
void ClntObjMgrPop();
|
|
|
|
void ClntObjMgrPush(ClntObjMgr* mgr);
|
|
|
|
void ClntObjMgrSetHandlers();
|
|
|
|
#endif
|