mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
20da0892ef
Slowly moving through the open-cs errors Good progress in openCS Very good progress on openCS Getting closer with openCS OpenCS compiles and runs! Didn't have time to test it all though ix openMW everything compiles on windows?? Fix gcc Fix Clang
28 lines
511 B
C++
28 lines
511 B
C++
#ifndef CSM_WOLRD_CELL_H
|
|
#define CSM_WOLRD_CELL_H
|
|
|
|
#include <string>
|
|
|
|
#include <components/esm3/loadcell.hpp>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
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.
|
|
struct Cell : public ESM::Cell
|
|
{
|
|
ESM::RefId mId;
|
|
|
|
void load(ESM::ESMReader& esm, bool& isDeleted);
|
|
};
|
|
}
|
|
|
|
#endif
|