mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 11:49:56 +00:00
17 lines
275 B
C++
17 lines
275 B
C++
|
#ifndef CSM_WOLRD_CELL_H
|
||
|
#define CSM_WOLRD_CELL_H
|
||
|
|
||
|
#include <components/esm/loadcell.hpp>
|
||
|
|
||
|
namespace CSMWorld
|
||
|
{
|
||
|
/// \brief Wrapper for Cell record
|
||
|
struct Cell : public ESM::Cell
|
||
|
{
|
||
|
std::string mId;
|
||
|
|
||
|
void load (ESM::ESMReader &esm);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|