1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 03:19:44 +00:00
OpenMW/apps/openmw/mwclass/itemlevlist.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
428 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
{
2022-04-04 00:44:53 +00:00
ItemLevList::ItemLevList()
: MWWorld::RegisteredClass<ItemLevList>(ESM::ItemLevList::sRecordId)
{
}
2022-08-16 19:15:03 +00:00
std::string_view ItemLevList::getName(const MWWorld::ConstPtr& ptr) const
2010-08-03 15:11:41 +00:00
{
2022-08-16 19:15:03 +00:00
return {};
2010-08-03 15:11:41 +00:00
}
bool ItemLevList::hasToolTip(const MWWorld::ConstPtr& ptr) const
{
return false;
}
2010-08-03 13:24:44 +00:00
}