1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 15:19:55 +00:00
openmw-tes3mp/components/esm/loaddoor.hpp
Nikolay Kasyanov fcfe267fc9 Refactored remaining headers in components/esm except defs.hpp.
Removed obsolete *.cpp files.
2011-04-28 21:55:05 +02:00

16 lines
203 B
C++

#ifndef _ESM_DOOR_H
#define _ESM_DOOR_H
#include "esm_reader.hpp"
namespace ESM
{
struct Door
{
std::string name, model, script, openSound, closeSound;
void load(ESMReader &esm);
};
}
#endif