mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 23:23:52 +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;
|
||
|
}
|
||
|
}
|