2018-03-29 17:01:57 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
class ServerCellManager
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ServerCellManager();
|
|
|
|
|
virtual ~ServerCellManager();
|
|
|
|
|
|
2019-07-07 20:56:15 +00:00
|
|
|
class CObjCell *GetObjCell(uint32_t cell_id, bool bDoPostLoad = true);
|
2018-03-29 17:01:57 -04:00
|
|
|
};
|
|
|
|
|
|