mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-29 00:32:49 +00:00
15 lines
255 B
C++
15 lines
255 B
C++
|
|
||
|
#include "lockpick.hpp"
|
||
|
|
||
|
#include <components/esm/loadlocks.hpp>
|
||
|
|
||
|
namespace MWClass
|
||
|
{
|
||
|
void Lockpick::registerSelf()
|
||
|
{
|
||
|
boost::shared_ptr<Class> instance (new Lockpick);
|
||
|
|
||
|
registerClass (typeid (ESM::Tool).name(), instance);
|
||
|
}
|
||
|
}
|