1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 15:45:33 +00:00
openmw/components/esm/loadacti.hpp

19 lines
242 B
C++
Raw Normal View History

2010-02-19 13:23:22 +00:00
#ifndef _ESM_ACTI_H
#define _ESM_ACTI_H
#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
{
std::string name, script, model;
2010-02-19 13:23:22 +00:00
void load(ESMReader &esm);
void save(ESMWriter &esm);
2010-02-19 13:23:22 +00:00
};
}
#endif