mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-27 03:26:38 +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;
 | |
| 	}
 | |
| }
 |