mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +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);
|
|
}
|
|
}
|