forked from mirror/openmw-tes3mp
14 lines
262 B
C++
14 lines
262 B
C++
|
|
#include "activator.hpp"
|
|
|
|
#include <components/esm/loadacti.hpp>
|
|
|
|
namespace MWWorld
|
|
{
|
|
void Activator::registerSelf()
|
|
{
|
|
boost::shared_ptr<Class> instance (new Activator);
|
|
|
|
registerClass (typeid (ESM::Activator).name(), instance);
|
|
}
|
|
}
|