1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 18:18:52 +00:00
OpenMW/apps/openmw/mwclass/itemlevlist.cpp
2022-08-16 21:15:03 +02:00

22 lines
428 B
C++

#include "itemlevlist.hpp"
#include <components/esm3/loadlevlist.hpp>
namespace MWClass
{
ItemLevList::ItemLevList()
: MWWorld::RegisteredClass<ItemLevList>(ESM::ItemLevList::sRecordId)
{
}
std::string_view ItemLevList::getName(const MWWorld::ConstPtr& ptr) const
{
return {};
}
bool ItemLevList::hasToolTip(const MWWorld::ConstPtr& ptr) const
{
return false;
}
}