mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
22 lines
428 B
C++
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;
|
|
}
|
|
}
|