mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
7168795ae6
esm_reader.hpp loadacti.hpp loadalch.hpp loadappa.hpp loadarmo.hpp loadbody.hpp loadbook.hpp loadbsgn.hpp loadcell.hpp loadclas.hpp loadclot.hpp loadland.hpp Updated code style in defs.hpp
17 lines
185 B
C++
17 lines
185 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);
|
|
};
|
|
}
|
|
#endif
|