mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
efcdb2dfdd
Detected by clang-tidy's modernize-use-override Future MRs can be created to run this on OpenMW and OpenMW CS
36 lines
484 B
C++
36 lines
484 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
|
|
{
|
|
|
|
struct CellRef : public ActorData
|
|
{
|
|
std::string mIndexedRefId;
|
|
|
|
std::string mScript;
|
|
|
|
bool mEnabled;
|
|
|
|
bool mDeleted;
|
|
|
|
void load(ESM::ESMReader& esm) override;
|
|
|
|
~CellRef() override = default;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|