1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/apps/openmw/mwclass/itemlevlist.cpp

25 lines
477 B
C++
Raw Normal View History

2010-08-03 13:24:44 +00:00
#include "itemlevlist.hpp"
#include <components/esm3/loadlevlist.hpp>
2010-08-03 13:24:44 +00:00
namespace MWClass
{
std::string ItemLevList::getName (const MWWorld::ConstPtr& ptr) const
2010-08-03 15:11:41 +00:00
{
return "";
}
bool ItemLevList::hasToolTip(const MWWorld::ConstPtr& ptr) const
{
return false;
}
2010-08-03 13:24:44 +00:00
void ItemLevList::registerSelf()
{
std::shared_ptr<Class> instance (new ItemLevList);
2010-08-03 13:24:44 +00:00
registerClass (ESM::ItemLevList::sRecordId, instance);
2010-08-03 13:24:44 +00:00
}
}