1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 12:45:36 +00:00
openmw/components/esm/loadacti.hpp

21 lines
284 B
C++
Raw Normal View History

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