1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 00:35:23 +00:00

27 lines
636 B
C++
Raw Normal View History

2013-04-14 17:04:55 +02:00
#ifndef CSM_WOLRD_CELL_H
#define CSM_WOLRD_CELL_H
#include <set>
#include <string>
2013-04-14 17:04:55 +02:00
#include <components/esm/loadcell.hpp>
namespace CSMWorld
{
/// \brief Wrapper for Cell record
///
/// \attention The mData.mX and mData.mY fields of the ESM::Cell struct are not used.
/// Exterior cell coordinates are encoded in the cell ID.
2013-04-14 17:04:55 +02:00
struct Cell : public ESM::Cell
{
std::string mId;
/// These are the references modified by the edited content file. These are stored in
/// mModified only.
std::set<std::string> mTouchedRefs;
void load (ESM::ESMReader &esm);
2013-04-14 17:04:55 +02:00
};
}
#endif