mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 00:49:54 +00:00
19 lines
394 B
C++
19 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);
|
|
}
|
|
}
|