You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/apps/openmw/mwclass/creaturelevlist.cpp

20 lines
394 B
C++

#include "creaturelevlist.hpp"
#include <components/esm/loadlevlist.hpp>
namespace MWClass
{
std::string CreatureLevList::getName (const MWWorld::Ptr& ptr) const
{
return "";
}
void CreatureLevList::registerSelf()
{
boost::shared_ptr<Class> instance (new CreatureLevList);
registerClass (typeid (ESM::CreatureLevList).name(), instance);
}
}