mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 11:23:51 +00:00
14 lines
262 B
C++
14 lines
262 B
C++
|
|
#include "activator.hpp"
|
|
|
|
#include <components/esm/loadacti.hpp>
|
|
|
|
namespace MWClass
|
|
{
|
|
void Activator::registerSelf()
|
|
{
|
|
boost::shared_ptr<Class> instance (new Activator);
|
|
|
|
registerClass (typeid (ESM::Activator).name(), instance);
|
|
}
|
|
}
|