mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +00:00
1e5768170f
Removed obsolete *.cpp files.
16 lines
203 B
C++
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
|