mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
21 lines
300 B
C++
21 lines
300 B
C++
#ifndef _ESM_ACTI_H
|
|
#define _ESM_ACTI_H
|
|
|
|
#include "esm_reader.hpp"
|
|
|
|
namespace ESM {
|
|
|
|
struct Activator
|
|
{
|
|
std::string name, script, model;
|
|
|
|
void load(ESMReader &esm)
|
|
{
|
|
model = esm.getHNString("MODL");
|
|
name = esm.getHNString("FNAM");
|
|
script = esm.getHNOString("SCRI");
|
|
}
|
|
};
|
|
}
|
|
#endif
|