1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 22:49:55 +00:00
openmw-tes3mp/apps/openmw/mwclass/itemlevlist.cpp

25 lines
481 B
C++
Raw Normal View History

2010-08-03 13:24:44 +00:00
#include "itemlevlist.hpp"
#include <components/esm/loadlevlist.hpp>
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 (typeid (ESM::ItemLevList).name(), instance);
}
}