mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
15 lines
273 B
C++
15 lines
273 B
C++
|
|
||
|
#include "itemlevlist.hpp"
|
||
|
|
||
|
#include <components/esm/loadlevlist.hpp>
|
||
|
|
||
|
namespace MWClass
|
||
|
{
|
||
|
void ItemLevList::registerSelf()
|
||
|
{
|
||
|
boost::shared_ptr<Class> instance (new ItemLevList);
|
||
|
|
||
|
registerClass (typeid (ESM::ItemLevList).name(), instance);
|
||
|
}
|
||
|
}
|