forked from mirror/openmw-tes3mp
20 lines
272 B
C++
20 lines
272 B
C++
#ifndef _ESM_ACTI_H
|
|
#define _ESM_ACTI_H
|
|
|
|
#include "record.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
struct Activator : public Record
|
|
{
|
|
std::string mName, mScript, mModel;
|
|
|
|
void load(ESMReader &esm);
|
|
void save(ESMWriter &esm);
|
|
|
|
int getName() { return REC_ACTI; }
|
|
};
|
|
|
|
}
|
|
#endif
|