1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-30 12:32:36 +00:00
OpenMW/apps/openmw/mwclass/itemlevlist.cpp
2022-04-06 16:49:25 +02:00

22 lines
424 B
C++

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