mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +00:00
21 lines
310 B
C++
21 lines
310 B
C++
#ifndef _ESM_DOOR_H
|
|
#define _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
|