1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-24 17:23:50 +00:00
openmw-tes3mp/components/esm/loadacti.hpp
2012-04-08 11:51:52 +02:00

21 lines
320 B
C++

#ifndef _ESM_ACTI_H
#define _ESM_ACTI_H
#include "record.hpp"
#include "esm_reader.hpp"
#include "esm_writer.hpp"
namespace ESM
{
struct Activator : public Record
{
std::string name, script, model;
void load(ESMReader &esm);
void save(ESMWriter &esm);
int getName() { return REC_ACTI; }
};
}
#endif