1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-05-17 20:41:31 +00:00
openmw/apps/openmw/mwclass/probe.cpp
2010-08-03 15:24:44 +02:00

14 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);
}
}