forked from mirror/openmw-tes3mp
14 lines
251 B
C++
14 lines
251 B
C++
|
|
#include "repair.hpp"
|
|
|
|
#include <components/esm/loadlocks.hpp>
|
|
|
|
namespace MWClass
|
|
{
|
|
void Repair::registerSelf()
|
|
{
|
|
boost::shared_ptr<Class> instance (new Repair);
|
|
|
|
registerClass (typeid (ESM::Repair).name(), instance);
|
|
}
|
|
}
|