mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-04 10:32:04 -04:00
15 lines
262 B
C++
15 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);
|
|
}
|
|
}
|