1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-24 12:53:52 +00:00
openmw-tes3mp/components/esm/loadacti.hpp

22 lines
320 B
C++
Raw Normal View History

2010-02-19 13:23:22 +00:00
#ifndef _ESM_ACTI_H
#define _ESM_ACTI_H
#include "record.hpp"
2010-02-19 13:23:22 +00:00
#include "esm_reader.hpp"
#include "esm_writer.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
{
std::string name, script, model;
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
};
}
#endif