mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-05 15:55:45 +00:00
25 lines
510 B
C++
25 lines
510 B
C++
|
|
#include "itemlevlist.hpp"
|
|
|
|
#include <components/esm/loadlevlist.hpp>
|
|
|
|
namespace MWClass
|
|
{
|
|
std::string ItemLevList::getId (const MWWorld::Ptr& ptr) const
|
|
{
|
|
return ptr.get<ESM::ItemLevList>()->mBase->mId;
|
|
}
|
|
|
|
std::string ItemLevList::getName (const MWWorld::Ptr& ptr) const
|
|
{
|
|
return "";
|
|
}
|
|
|
|
void ItemLevList::registerSelf()
|
|
{
|
|
boost::shared_ptr<Class> instance (new ItemLevList);
|
|
|
|
registerClass (typeid (ESM::ItemLevList).name(), instance);
|
|
}
|
|
}
|