mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-18 04:10:06 +00:00
d1fb854521
esm typo esm typo
25 lines
477 B
C++
25 lines
477 B
C++
#include "itemlevlist.hpp"
|
|
|
|
#include <components/esm3/loadlevlist.hpp>
|
|
|
|
namespace MWClass
|
|
{
|
|
|
|
std::string ItemLevList::getName (const MWWorld::ConstPtr& ptr) const
|
|
{
|
|
return "";
|
|
}
|
|
|
|
bool ItemLevList::hasToolTip(const MWWorld::ConstPtr& ptr) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void ItemLevList::registerSelf()
|
|
{
|
|
std::shared_ptr<Class> instance (new ItemLevList);
|
|
|
|
registerClass (ESM::ItemLevList::sRecordId, instance);
|
|
}
|
|
}
|