mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 07:56:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			374 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			374 B
		
	
	
	
		
			C++
		
	
	
	
	
	
 | 
						|
#include "itemlevlist.hpp"
 | 
						|
 | 
						|
#include <components/esm/loadlevlist.hpp>
 | 
						|
 | 
						|
namespace MWClass
 | 
						|
{
 | 
						|
    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);
 | 
						|
    }
 | 
						|
}
 |