openmw/components/esm/loadacti.hpp

19 lines
228 B
C++
Raw Normal View History

2012-09-23 22:11:08 +04:00
#ifndef OPENMW_ESM_ACTI_H
#define OPENMW_ESM_ACTI_H
2010-02-19 14:23:22 +01:00
#include "record.hpp"
2010-02-19 14:23:22 +01:00
namespace ESM
{
2010-02-19 14:23:22 +01:00
struct Activator
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);
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