2010-08-03 15:24:44 +02:00
|
|
|
#include "itemlevlist.hpp"
|
|
|
|
|
2022-01-22 15:58:41 +01:00
|
|
|
#include <components/esm3/loadlevlist.hpp>
|
2010-08-03 15:24:44 +02:00
|
|
|
|
|
|
|
namespace MWClass
|
|
|
|
{
|
2022-04-04 02:44:53 +02:00
|
|
|
ItemLevList::ItemLevList()
|
|
|
|
: MWWorld::RegisteredClass<ItemLevList>(ESM::ItemLevList::sRecordId)
|
|
|
|
{
|
|
|
|
}
|
2014-07-18 09:56:58 +02:00
|
|
|
|
2022-08-16 21:15:03 +02:00
|
|
|
std::string_view ItemLevList::getName(const MWWorld::ConstPtr& ptr) const
|
2010-08-03 17:11:41 +02:00
|
|
|
{
|
2022-08-16 21:15:03 +02:00
|
|
|
return {};
|
2010-08-03 17:11:41 +02:00
|
|
|
}
|
|
|
|
|
2019-09-10 21:56:10 +03:00
|
|
|
bool ItemLevList::hasToolTip(const MWWorld::ConstPtr& ptr) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2010-08-03 15:24:44 +02:00
|
|
|
}
|