1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-05 06:40:09 +00:00
OpenMW/components/esm/loadacti.hpp

21 lines
272 B
C++
Raw Normal View History

2010-02-19 14:23:22 +01:00
#ifndef _ESM_ACTI_H
#define _ESM_ACTI_H
#include "record.hpp"
2010-02-19 14:23:22 +01:00
namespace ESM
{
2010-02-19 14:23:22 +01:00
struct Activator : public Record
2010-02-19 14:23:22 +01:00
{
2012-09-17 11:37:50 +04:00
std::string mName, mScript, mModel;
2010-02-19 14:23:22 +01:00
void load(ESMReader &esm);
void save(ESMWriter &esm);
int getName() { return REC_ACTI; }
2010-02-19 14:23:22 +01:00
};
2012-09-17 11:37:50 +04:00
2010-02-19 14:23:22 +01:00
}
#endif