1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00
OpenMW/components/esm/loaddoor.hpp

17 lines
203 B
C++
Raw Normal View History

2010-02-19 09:12:49 +01:00
#ifndef _ESM_DOOR_H
#define _ESM_DOOR_H
#include "esm_reader.hpp"
namespace ESM
{
2010-02-19 14:23:22 +01:00
2010-02-19 09:12:49 +01:00
struct Door
{
std::string name, model, script, openSound, closeSound;
2010-02-19 09:12:49 +01:00
void load(ESMReader &esm);
2010-02-19 09:12:49 +01:00
};
2010-02-19 14:23:22 +01:00
}
2010-02-19 09:12:49 +01:00
#endif