mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
15 lines
248 B
C++
15 lines
248 B
C++
#include "MaterialInstanceTextureUnit.hpp"
|
|
|
|
namespace sh
|
|
{
|
|
MaterialInstanceTextureUnit::MaterialInstanceTextureUnit (const std::string& name)
|
|
: mName(name)
|
|
{
|
|
}
|
|
|
|
std::string MaterialInstanceTextureUnit::getName() const
|
|
{
|
|
return mName;
|
|
}
|
|
}
|