mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
12 lines
179 B
C++
12 lines
179 B
C++
|
|
#pragma once
|
|
|
|
class ServerCellManager
|
|
{
|
|
public:
|
|
ServerCellManager();
|
|
virtual ~ServerCellManager();
|
|
|
|
class CObjCell *GetObjCell(uint32_t cell_id, bool bDoPostLoad = true);
|
|
};
|
|
|