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