forked from mirror/openmw-tes3mp
16 lines
157 B
C++
16 lines
157 B
C++
#ifndef REFDATA_H
|
|
#define REFDATA_H
|
|
|
|
#include <string>
|
|
|
|
namespace OMW
|
|
{
|
|
struct RefData
|
|
{
|
|
std::string mHandle;
|
|
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|