openmw-tes3coop/components/esm/loadacti.hpp

18 lines
228 B
C++

#ifndef OPENMW_ESM_ACTI_H
#define OPENMW_ESM_ACTI_H
#include "record.hpp"
namespace ESM
{
struct Activator
{
std::string mName, mScript, mModel;
void load(ESMReader &esm);
void save(ESMWriter &esm);
};
}
#endif