mirror of
https://github.com/OpenMW/openmw.git
synced 2025-05-17 20:41:31 +00:00
14 lines
247 B
C++
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);
|
|
}
|
|
}
|