mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 08:26:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			248 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			248 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "MaterialInstanceTextureUnit.hpp"
 | 
						|
 | 
						|
namespace sh
 | 
						|
{
 | 
						|
	MaterialInstanceTextureUnit::MaterialInstanceTextureUnit (const std::string& name)
 | 
						|
		: mName(name)
 | 
						|
	{
 | 
						|
	}
 | 
						|
 | 
						|
	std::string MaterialInstanceTextureUnit::getName() const
 | 
						|
	{
 | 
						|
		return mName;
 | 
						|
	}
 | 
						|
}
 |