assimp/port/Assimp.NET/Assimp.NET/Material.cpp

35 lines
832 B
C++

#include "Material.h"
namespace AssimpNET
{
Material::Material(void)
{
throw gcnew System::NotImplementedException();
}
Material::~Material(void)
{
throw gcnew System::NotImplementedException();
}
generic<typename T>
aiReturn Material::Get(array<char>^ pKey, unsigned int type, unsigned int idx, T pOut)
{
throw gcnew System::NotImplementedException();
}
generic<typename T>
aiReturn Material::Get(array<char>^ pKey, unsigned int type, unsigned int idx, T pOut, unsigned int^ pMax)
{
throw gcnew System::NotImplementedException();
}
aiReturn Material::GetTexture(TextureType type, unsigned int index, String^ path, TextureMapping& mapping, unsigned int^ uvindex, float^ blend,
TextureOP& op, TextureMapMode& mapMode)
{
throw gcnew System::NotImplementedException();
}
}//namespace