mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
34 lines
481 B
C++
34 lines
481 B
C++
#ifndef OPENMW_ESSIMPORT_CELLREF_H
|
|
#define OPENMW_ESSIMPORT_CELLREF_H
|
|
|
|
#include <string>
|
|
|
|
#include <components/esm/cellref.hpp>
|
|
|
|
#include "importacdt.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
// Not sure if we can share any code with ESM::CellRef here
|
|
struct CellRef
|
|
{
|
|
std::string mIndexedRefId;
|
|
ESM::RefNum mRefNum;
|
|
|
|
ACDT mACDT;
|
|
|
|
ESM::Position mPos;
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|