mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
19 lines
260 B
C++
19 lines
260 B
C++
#ifndef _ESM_DOOR_H
|
|
#define _ESM_DOOR_H
|
|
|
|
#include "esm_reader.hpp"
|
|
#include "esm_writer.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
struct Door
|
|
{
|
|
std::string name, model, script, openSound, closeSound;
|
|
|
|
void load(ESMReader &esm);
|
|
void save(ESMWriter &esm);
|
|
};
|
|
}
|
|
#endif
|