mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
20 lines
374 B
C++
20 lines
374 B
C++
|
|
#include "itemlevlist.hpp"
|
|
|
|
#include <components/esm/loadlevlist.hpp>
|
|
|
|
namespace MWClass
|
|
{
|
|
std::string ItemLevList::getName (const MWWorld::Ptr& ptr) const
|
|
{
|
|
return "";
|
|
}
|
|
|
|
void ItemLevList::registerSelf()
|
|
{
|
|
boost::shared_ptr<Class> instance (new ItemLevList);
|
|
|
|
registerClass (typeid (ESM::ItemLevList).name(), instance);
|
|
}
|
|
}
|