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