1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/apps/openmw/mwclass/itemlevlist.cpp

20 lines
374 B
C++
Raw Normal View History

2010-08-03 13:24:44 +00:00
#include "itemlevlist.hpp"
#include <components/esm/loadlevlist.hpp>
namespace MWClass
{
2010-08-03 15:11:41 +00:00
std::string ItemLevList::getName (const MWWorld::Ptr& ptr) const
{
return "";
}
2010-08-03 13:24:44 +00:00
void ItemLevList::registerSelf()
{
boost::shared_ptr<Class> instance (new ItemLevList);
registerClass (typeid (ESM::ItemLevList).name(), instance);
}
}