mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
22 lines
322 B
C++
22 lines
322 B
C++
#ifndef OPENMW_ESM_DOOR_H
|
|
#define OPENMW_ESM_DOOR_H
|
|
|
|
#include <string>
|
|
|
|
#include "record.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
struct Door : public Record
|
|
{
|
|
std::string mName, mModel, mScript, mOpenSound, mCloseSound;
|
|
|
|
void load(ESMReader &esm);
|
|
void save(ESMWriter &esm);
|
|
|
|
int getName() { return REC_DOOR; }
|
|
};
|
|
}
|
|
#endif
|