openmw-tes3coop/apps/openmw/mwclass/potion.cpp
2010-08-03 15:24:44 +02:00

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);
}
}