2010-08-03 13:24:44 +00:00
|
|
|
#include "itemlevlist.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadlevlist.hpp>
|
|
|
|
|
|
|
|
namespace MWClass
|
|
|
|
{
|
2014-07-18 07:56:58 +00:00
|
|
|
|
2015-12-18 14:27:06 +00:00
|
|
|
std::string ItemLevList::getName (const MWWorld::ConstPtr& ptr) const
|
2010-08-03 15:11:41 +00:00
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2019-09-10 18:56:10 +00:00
|
|
|
bool ItemLevList::hasToolTip(const MWWorld::ConstPtr& ptr) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
void ItemLevList::registerSelf()
|
|
|
|
{
|
2017-05-05 19:21:11 +00:00
|
|
|
std::shared_ptr<Class> instance (new ItemLevList);
|
2010-08-03 13:24:44 +00:00
|
|
|
|
|
|
|
registerClass (typeid (ESM::ItemLevList).name(), instance);
|
|
|
|
}
|
|
|
|
}
|