mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
19 lines
242 B
C++
19 lines
242 B
C++
#ifndef _ESM_ACTI_H
|
|
#define _ESM_ACTI_H
|
|
|
|
#include "esm_reader.hpp"
|
|
#include "esm_writer.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
struct Activator
|
|
{
|
|
std::string name, script, model;
|
|
|
|
void load(ESMReader &esm);
|
|
void save(ESMWriter &esm);
|
|
};
|
|
}
|
|
#endif
|