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